summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-10 19:38:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-10 19:38:45 +0000
commit300911c67bcd47729fd9b6e299bc2810c7c82b43 (patch)
tree801a8837eda59222c1848f7eaa204be8c646f37a
parent7dadcc000a3af2260482c9a35726f82d86034c35 (diff)
downloadruby-300911c67bcd47729fd9b6e299bc2810c7c82b43.tar.gz
ruby-300911c67bcd47729fd9b6e299bc2810c7c82b43.tar.xz
ruby-300911c67bcd47729fd9b6e299bc2810c7c82b43.zip
* object.c (sym_to_proc): imported Symbol#to_proc from ActiveSupprot.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--object.c28
2 files changed, 31 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 830b787f5..a10e71a2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jun %-2d 04:38:20 2006 U-HUDIE\nobu,S-1-5-21-3746871489-166115513-3294629105-1005 <nobu@ruby-lang.org>
+
+ * object.c (sym_to_proc): imported Symbol#to_proc from ActiveSupprot.
+
Sat Jun 10 18:02:40 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/bigdecimal/lib/bigdecimal/newton.rb (Newton::nlsolve): typo
diff --git a/object.c b/object.c
index 6481ce588..f1d87c022 100644
--- a/object.c
+++ b/object.c
@@ -1055,6 +1055,31 @@ sym_to_sym(VALUE sym)
return sym;
}
+static VALUE
+sym_call(VALUE args, VALUE sym)
+{
+ VALUE obj = RARRAY(args)->ptr[0];
+
+ return rb_funcall(obj, SYM2ID(sym),
+ RARRAY(args)->len - 1,
+ RARRAY(args)->ptr + 1);
+}
+
+/*
+ * call-seq:
+ * sym.to_proc
+ *
+ * Returns a _Proc_ object which respond to the given method by _sym_.
+ *
+ * (1..3).collect(&:to_s) #=> ["1", "2", "3"]
+ */
+
+static VALUE
+sym_to_proc(VALUE sym)
+{
+ return rb_proc_new(sym_call, sym);
+}
+
/***********************************************************************
*
@@ -2453,7 +2478,8 @@ Init_Object(void)
rb_define_method(rb_cSymbol, "to_s", sym_to_s, 0);
rb_define_method(rb_cSymbol, "id2name", sym_to_s, 0);
rb_define_method(rb_cSymbol, "to_sym", sym_to_sym, 0);
- rb_define_method(rb_cSymbol, "===", rb_obj_equal, 1);
+ rb_define_method(rb_cSymbol, "to_proc", sym_to_proc, 0);
+ rb_define_method(rb_cSymbol, "===", rb_obj_equal, 1);
rb_define_method(rb_cModule, "freeze", rb_mod_freeze, 0);
rb_define_method(rb_cModule, "===", rb_mod_eqq, 1);