зеркало из https://github.com/github/ruby.git
enumerator.c: lazyenum_size
* enumerator.c (lazyenum_size): adjust arguments. * enumerator.c (enumerable_lazy): use lazyenum_size() instead of enum_size(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
b83b33eef0
Коммит
da0c4e5e11
|
@ -1259,6 +1259,12 @@ enum_size(VALUE self)
|
|||
return (r == Qundef) ? Qnil : r;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
lazyenum_size(VALUE self, VALUE args, VALUE eobj)
|
||||
{
|
||||
return enum_size(self);
|
||||
}
|
||||
|
||||
static VALUE
|
||||
lazy_size(VALUE self)
|
||||
{
|
||||
|
@ -1405,7 +1411,7 @@ lazy_set_method(VALUE lazy, VALUE args, rb_enumerator_size_func *size_fn)
|
|||
static VALUE
|
||||
enumerable_lazy(VALUE obj)
|
||||
{
|
||||
VALUE result = lazy_to_enum_i(obj, sym_each, 0, 0, enum_size);
|
||||
VALUE result = lazy_to_enum_i(obj, sym_each, 0, 0, lazyenum_size);
|
||||
/* Qfalse indicates that the Enumerator::Lazy has no method name */
|
||||
rb_ivar_set(result, id_method, Qfalse);
|
||||
return result;
|
||||
|
|
Загрузка…
Ссылка в новой задаче