MONC
|
Returns whether a collection is empty. More...
Private Member Functions | |
logical function | list_is_empty (specificlist) |
Determines whether or not the list is empty. More... | |
logical function | stack_is_empty (specificstack) |
Returns whether a stack is empty. More... | |
logical function | queue_is_empty (specificqueue) |
Returns whether a queue is empty. More... | |
logical function | map_is_empty (specificmap) |
Returns whether a map is empty. More... | |
logical function | hashmap_is_empty (specificmap) |
Returns whether a hashmap is empty. More... | |
logical function | hashset_is_empty (specificset) |
Determines whether or not the hashset is empty. More... | |
Returns whether a collection is empty.
This has a time complexity of O(1)
collection | The specific list, stack queue or map involved |
Definition at line 437 of file collections.F90.
|
private |
Returns whether a hashmap is empty.
Do not call directly from external module, this is called via the appropriate interface
specificmap | The specific hashmap involved |
Definition at line 1881 of file collections.F90.
|
private |
Determines whether or not the hashset is empty.
Do not call directly from external module, this is called via the appropriate interface
specificset | The specific set involved |
Definition at line 2067 of file collections.F90.
|
private |
Determines whether or not the list is empty.
Do not call directly from external module, this is called via the appropriate interface
specificlist | The specific list involved |
Definition at line 3027 of file collections.F90.
|
private |
Returns whether a map is empty.
Do not call directly from external module, this is called via the appropriate interface
specificmap | The specific map involved |
Definition at line 1210 of file collections.F90.
|
private |
Returns whether a queue is empty.
Do not call directly from external module, this is called via the appropriate interface
specificqueue | The specific queue involved |
Definition at line 2748 of file collections.F90.
|
private |
Returns whether a stack is empty.
Do not call directly from external module, this is called via the appropriate interface
specificstack | The specific stack involved |
Definition at line 2452 of file collections.F90.