hashCode.Rd
Java-style function to compute the hashCode for the given object. Returns an integer value.
hashCode(key)
the object to be hashed
the hash code as an integer
This only works for integer, numeric and character types right now.
hashCode since 1.4.0
if (FALSE) { # \dontrun{ hashCode(1L) # 1 hashCode(1.0) # 1072693248 hashCode("1") # 49 } # }