= private = protected
hash()
Compute a hash based on the value of big.
See also Object#hash.
VALUE rb_big_hash(VALUE x) { st_index_t hash; hash = rb_memhash(BDIGITS(x), sizeof(BDIGIT)*BIGNUM_LEN(x)) ^ BIGNUM_SIGN(x); return INT2FIX(hash); }