Return the minimum and maximum unique key id values actually stored.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(dictionary), | intent(in) | :: | self | The dictionary. |
Minimum and maximum id values actually stored.
pure function ids(self)
!---------------------------------------------------------------------------------------------------------------------------------
!< Return the minimum and maximum unique key id values actually stored.
!---------------------------------------------------------------------------------------------------------------------------------
class(dictionary), intent(in) :: self !< The dictionary.
integer(I8P) :: ids(1:2) !< Minimum and maximum id values actually stored.
!---------------------------------------------------------------------------------------------------------------------------------
!---------------------------------------------------------------------------------------------------------------------------------
ids = self%ids_
!---------------------------------------------------------------------------------------------------------------------------------
endfunction ids