|
2 | 2 | title: Hash maps
|
3 | 3 | ---
|
4 | 4 |
|
5 |
| -# The `stdlib_hashmap_wrappers`, `stdlib_hashmap_chaining` and `stdlib_hashmap_open` modules |
| 5 | +# The `stdlib_hashmap_wrappers`, and `stdlib_hashmaps` modules |
6 | 6 |
|
7 | 7 | [TOC]
|
8 | 8 |
|
@@ -277,7 +277,7 @@ is an `intent(out)` argument.
|
277 | 277 | implicit none
|
278 | 278 | type(other_type) :: other_in, other_out
|
279 | 279 | integer(int_8) :: i
|
280 |
| - class(*), allocatable :: dummy |
| 280 | + class(*), allocatable :: dummy |
281 | 281 | type dummy_type
|
282 | 282 | integer(int8) :: value(15)
|
283 | 283 | end type
|
@@ -674,7 +674,7 @@ The result is a value of type default `logical`.
|
674 | 674 |
|
675 | 675 | ##### Result value
|
676 | 676 |
|
677 |
| -The result is `.true.` if the keys are equal, otherwise `.falss`. |
| 677 | +The result is `.true.` if the keys are equal, otherwise `.falss.`. |
678 | 678 |
|
679 | 679 | ##### Example
|
680 | 680 |
|
@@ -1448,8 +1448,8 @@ Subroutine
|
1448 | 1448 | with the `key`.
|
1449 | 1449 |
|
1450 | 1450 | `exists` (optional): shall be a variable of type logical. It is an
|
1451 |
| -`intent(out)` argument. If `true` an entry with the given `key` |
1452 |
| -exists in the map, if false `other` is undefined. |
| 1451 | +`intent(out)` argument. If `.true.` an entry with the given `key` |
| 1452 | +exists in the map, if `.false.` `other` is undefined. |
1453 | 1453 |
|
1454 | 1454 | ##### Example
|
1455 | 1455 |
|
@@ -1649,7 +1649,7 @@ entry.
|
1649 | 1649 | `conflict` (optional): shall be a scalar variable of type
|
1650 | 1650 | `logical`. It is an `intent(in)` argument. If present, a `.true.`
|
1651 | 1651 | value indicates that an entry with the value of `key` already exists
|
1652 |
| -and the entry was not entered into the map, a `.false` value indicates |
| 1652 | +and the entry was not entered into the map, a `.false.` value indicates |
1653 | 1653 | that `key` was not present in the map and the entry was added to the
|
1654 | 1654 | table.
|
1655 | 1655 |
|
@@ -1852,8 +1852,8 @@ to be removed.
|
1852 | 1852 |
|
1853 | 1853 | `existed` (optional): shall be a scalar variable of type default
|
1854 | 1854 | logical. It is an `intent(out)` argument. If present with the value
|
1855 |
| -`true` the entry existed |
1856 |
| -in the map before removal, if `false` the entry was not present to be |
| 1855 | +`.true.` the entry existed |
| 1856 | +in the map before removal, if `.false.` the entry was not present to be |
1857 | 1857 | removed.
|
1858 | 1858 |
|
1859 | 1859 | ##### Example
|
|
0 commit comments