@@ -950,7 +950,7 @@ The extension types provide
950
950
procedures to manipulate the structure of a hash map object:
951
951
` init ` , ` map_entry ` , ` rehash ` , ` remove_entry ` , and
952
952
` set_other_data ` . They also provide procedures to inquire about
953
- entries in the hash map: ` get_other_data ` , ` in_map ` , and
953
+ entries in the hash map: ` get_other_data ` , and
954
954
` valid_key ` . Finally they provide procedures to inquire about the
955
955
overall structure and performance of the hash map object:` calls ` ,
956
956
` entries ` , ` get_other_data ` , ` loading ` , ` slots ` , and
@@ -1172,7 +1172,6 @@ as follows:
1172
1172
type(chaining_map_entry_ptr), allocatable :: slots(:)
1173
1173
contains
1174
1174
procedure :: get_other_data => get_other_chaining_data
1175
- procedure :: in_map => in_chain_map
1176
1175
procedure :: init => init_chaining_map
1177
1176
procedure :: loading => chaining_loading
1178
1177
procedure :: map_entry => map_chain_entry
@@ -1244,7 +1243,6 @@ as follows:
1244
1243
integer(int_index), allocatable :: slots(:)
1245
1244
contains
1246
1245
procedure :: get_other_data => get_other_open_data
1247
- procedure :: in_map => in_open_map
1248
1246
procedure :: init => init_open_map
1249
1247
procedure :: loading => open_loading
1250
1248
procedure :: map_entry => map_open_entry
@@ -1375,7 +1373,7 @@ Returns the number of entries in a hash map.
1375
1373
1376
1374
##### Syntax
1377
1375
1378
- ` value = [[stdlib_hashmaps:map% entries]]() `
1376
+ ` value = [[stdlib_hashmaps:map % entries]]() `
1379
1377
1380
1378
##### Class
1381
1379
@@ -1422,7 +1420,7 @@ Returns the other data associated with the `key`,
1422
1420
1423
1421
##### Syntax
1424
1422
1425
- ` value = [[stdlib_hashmaps:map% get_other_data)]]( key, other [, exists] ) `
1423
+ ` value = [[stdlib_hashmaps:map % get_other_data)]]( key, other [, exists] ) `
1426
1424
1427
1425
##### Class
1428
1426
@@ -1452,7 +1450,6 @@ exists in the map, if `.false.` `other` is undefined.
1452
1450
associated with a ` key ` :
1453
1451
1454
1452
1455
-
1456
1453
``` Fortran
1457
1454
program demo_get_other_data
1458
1455
use, intrinsic:: iso_fortran_env, only: &
@@ -1909,8 +1906,8 @@ the other data for the entry with the key value, `key`.
1909
1906
` exists ` (optional): shall be a scalar variable of type default
1910
1907
logical. It is an ` intent(out) ` argument. If present with the value
1911
1908
` .true. ` an entry with that key existed in the map and its ` other `
1912
- data was replaced, otherwise if ` exists ` is ` .false. ` the entry didnot
1913
- exisst and nothing was done.
1909
+ data was replaced, otherwise if ` exists ` is ` .false. ` the entry did
1910
+ not exist and nothing was done.
1914
1911
1915
1912
1916
1913
##### Example
0 commit comments