aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--object.c28
2 files changed, 31 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 830b787f56..a10e71a2c3 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 6481ce5880..f1d87c022a 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);