From a3e10f380ab276cc9192418d2a19c7e0ffc86046 Mon Sep 17 00:00:00 2001 From: shugo Date: Tue, 23 Mar 2010 09:38:54 +0000 Subject: * object.c (rb_obj_singleton_class): new method Kernel#singleton_class. [ruby-core:21702] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- object.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'object.c') diff --git a/object.c b/object.c index f473fe1e4f..939d5edc6d 100644 --- a/object.c +++ b/object.c @@ -162,6 +162,29 @@ rb_obj_class(VALUE obj) return rb_class_real(CLASS_OF(obj)); } +/* + * call-seq: + * obj.singleton_class => class + * + * Returns the singleton class of obj. This method creates + * a new singleton class if obj does not have it. + * + * If obj is nil, true, or + * false, it returns NilClass, TrueClass, or FalseClass, + * respectively. + * If obj is a Fixnum or a Symbol, it raises a TypeError. + * + * Object.new.singleton_class #=> #> + * String.singleton_class #=> # + * nil.singleton_class #=> NilClass + */ + +static VALUE +rb_obj_singleton_class(VALUE obj) +{ + return rb_singleton_class(obj); +} + static void init_copy(VALUE dest, VALUE obj) { @@ -2585,6 +2608,7 @@ Init_Object(void) rb_define_method(rb_mKernel, "<=>", rb_obj_cmp, 1); rb_define_method(rb_mKernel, "class", rb_obj_class, 0); + rb_define_method(rb_mKernel, "singleton_class", rb_obj_singleton_class, 0); rb_define_method(rb_mKernel, "clone", rb_obj_clone, 0); rb_define_method(rb_mKernel, "dup", rb_obj_dup, 0); rb_define_method(rb_mKernel, "initialize_copy", rb_obj_init_copy, 1); -- cgit v1.2.3