aboutsummaryrefslogtreecommitdiffstats
path: root/enum.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-15 11:27:34 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-15 11:27:34 +0000
commit95d2ec93bc5d032dc6695d32d37f963a9617eeaf (patch)
tree35e6f3d8d15c4fbc4be7faf1df96c9fe75a7964d /enum.c
parente89232eb15857daae7bc8cbeec98c253a6e8a9f2 (diff)
downloadruby-95d2ec93bc5d032dc6695d32d37f963a9617eeaf.tar.gz
* enum.c (enum_inject): Implement the specialized code for self is an
array and a symbol operator is given. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
-rw-r--r--enum.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/enum.c b/enum.c
index 681d58f14a..49cd8ef7af 100644
--- a/enum.c
+++ b/enum.c
@@ -701,6 +701,30 @@ enum_inject(int argc, VALUE *argv, VALUE obj)
iter = inject_op_i;
break;
}
+
+ if (iter == inject_op_i &&
+ SYMBOL_P(op) &&
+ RB_TYPE_P(obj, T_ARRAY) &&
+ rb_method_basic_definition_p(CLASS_OF(obj), id_each)) {
+ VALUE v;
+ long i;
+ if (RARRAY_LEN(obj) == 0)
+ return init == Qundef ? Qnil : init;
+ if (init == Qundef) {
+ v = RARRAY_AREF(obj, 0);
+ i = 1;
+ }
+ else {
+ v = init;
+ i = 0;
+ }
+ id = SYM2ID(op);
+ for (; i<RARRAY_LEN(obj); i++) {
+ v = rb_funcall(v, id, 1, RARRAY_AREF(obj, i));
+ }
+ return v;
+ }
+
memo = MEMO_NEW(init, Qnil, op);
rb_block_call(obj, id_each, 0, 0, iter, (VALUE)memo);
if (memo->v1 == Qundef) return Qnil;