val_range Function

private function val_range(this) result(h_range)

Get the range of hash table values of this ht @return h_range maximum possible hash value of this ht

Type Bound

shared_rhash_t

Arguments

Type IntentOptional Attributes Name
class(shared_rhash_t), intent(in) :: this

Return Value integer(kind=int64)


Contents

Source Code


Source Code

    function val_range(this) result(h_range)
        class(shared_rhash_t), intent(in) :: this
        integer(int64) :: h_range

        h_range = this%hval_range
    end function val_range