hash()
public
Compute a hash-code for this array. Two arrays with the same content will
have the same hash code (and will compare
using eql?).
Show source
static VALUE
rb_ary_hash(VALUE ary)
{
return rb_exec_recursive_outer(recursive_hash, ary, 0);
}