MODFLOW 6
version 6.6.0.dev0
USGS Modular Hydrologic Model
|
Data Types | |
type | keyvaluelisttype |
A list that stores items as a key-value pair. More... | |
Functions/Subroutines | |
class(iteratortype) function, allocatable | iterator (this) |
subroutine | add (this, key, val) |
Add a key-value pair to the list. More... | |
class(*) function, pointer | get (this, key) |
Get a value using a key. More... | |
integer(i4b) function | count (this) |
The nummer of items in the list. More... | |
subroutine | clear (this) |
Clears the list. More... | |
recursive subroutine | clear_node (node) |
Clears the node. More... | |
|
private |
The list uses an 'append to end' approach for adding items
Definition at line 42 of file KeyValueList.f90.
|
private |
clears all the nodes of the list
Definition at line 103 of file KeyValueList.f90.
|
private |
Recursive method that clears the next node before clearing itself
Definition at line 117 of file KeyValueList.f90.
|
private |
Definition at line 92 of file KeyValueList.f90.
|
private |
If the key can't be found the return value will be a null pointer
Definition at line 69 of file KeyValueList.f90.
|
private |
Definition at line 31 of file KeyValueList.f90.