From e1c991f8d783440411e5bf4faf3f0923cef4a0e1 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Sat, 24 Aug 2019 09:09:53 -0700 Subject: Move Object#hash rdoc to hash.c [ci skip] This gets RDoc to pick up the documentation correctly. Problem pointed out by zverok (Victor Shepelev). --- object.c | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'object.c') diff --git a/object.c b/object.c index c580d01223..78665e039c 100644 --- a/object.c +++ b/object.c @@ -209,25 +209,6 @@ rb_obj_equal(VALUE obj1, VALUE obj2) return Qfalse; } -/** - * call-seq: - * obj.hash -> integer - * - * Generates an Integer hash value for this object. This function must have the - * property that a.eql?(b) implies a.hash == b.hash. - * - * The hash value is used along with #eql? by the Hash class to determine if - * two objects reference the same hash key. Any hash value that exceeds the - * capacity of an Integer will be truncated before being used. - * - * The hash value for an object may not be identical across invocations or - * implementations of Ruby. If you need a stable identifier across Ruby - * invocations and implementations you will need to generate one with a custom - * method. - *-- - * \private - *++ - */ VALUE rb_obj_hash(VALUE obj); /** @@ -4276,7 +4257,7 @@ InitVM_Object(void) rb_define_method(rb_mKernel, "=~", rb_obj_match, 1); rb_define_method(rb_mKernel, "!~", rb_obj_not_match, 1); rb_define_method(rb_mKernel, "eql?", rb_obj_equal, 1); - rb_define_method(rb_mKernel, "hash", rb_obj_hash, 0); + rb_define_method(rb_mKernel, "hash", rb_obj_hash, 0); /* in hash.c */ rb_define_method(rb_mKernel, "<=>", rb_obj_cmp, 1); rb_define_method(rb_mKernel, "class", rb_obj_class, 0); -- cgit v1.2.3