Returns the number of items in a hash

Details

Return the number of items in the hash by calling length on the internal environment.

Value

integer

Number of items in the hash.

Author

Christpher Brown

See also

See Also hash, length

Examples


  h <- hash( letters, 1:26 )
  length(h) # 26
#> [1] 26