mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
enum.c: revert last changes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
52817c3654
commit
5b93abf50e
1 changed files with 0 additions and 21 deletions
21
enum.c
21
enum.c
|
@ -1187,27 +1187,6 @@ enum_zip(int argc, VALUE *argv, VALUE obj)
|
|||
return result;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
in_i(VALUE i, VALUE *memo)
|
||||
{
|
||||
if (rb_equal(i, memo[0])) {
|
||||
memo[1] = Qtrue;
|
||||
rb_iter_break();
|
||||
}
|
||||
return Qnil;
|
||||
}
|
||||
|
||||
VALUE
|
||||
rb_enum_in(VALUE elem, VALUE obj)
|
||||
{
|
||||
VALUE memo[2];
|
||||
|
||||
memo[0] = elem;
|
||||
memo[1] = Qfalse;
|
||||
rb_block_call(obj, id_each, 0, 0, in_i, (VALUE)&memo);
|
||||
return memo[1];
|
||||
}
|
||||
|
||||
/*
|
||||
* The <code>Enumerable</code> mixin provides collection classes with
|
||||
* several traversal and searching methods, and with the ability to
|
||||
|
|
Loading…
Reference in a new issue