= private = protected
hash()
Compute a hash based on the value of big.
static VALUE rb_big_hash(VALUE x) { int hash; hash = rb_memhash(BDIGITS(x), sizeof(BDIGIT)*RBIGNUM_LEN(x)) ^ RBIGNUM_SIGN(x); return INT2FIX(hash); }