Skip to content

Commit

Permalink
* enum.c (enum_each_cons): Support for Enumerable#each_cons.size
Browse files Browse the repository at this point in the history
  [Feature ruby#6636]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37509 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
marcandre committed Nov 6, 2012
1 parent df8451e commit fe9386c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
16 changes: 15 additions & 1 deletion enum.c
Original file line number Diff line number Diff line change
Expand Up @@ -1849,6 +1849,20 @@ each_cons_i(VALUE i, VALUE args, int argc, VALUE *argv)
return v;
}

static VALUE
enum_each_cons_size(VALUE obj, VALUE args)
{
VALUE n, size;
long cons_size = NUM2LONG(RARRAY_PTR(args)[0]);
if (cons_size <= 0) rb_raise(rb_eArgError, "invalid size");

size = enum_size(obj, 0);
if (size == Qnil) return Qnil;

n = rb_funcall(size, '+', 1, LONG2NUM(1 - cons_size));
return (rb_cmpint(rb_funcall(n, id_cmp, 1, LONG2FIX(0)), n, LONG2FIX(0)) == -1) ? LONG2FIX(0) : n;
}

/*
* call-seq:
* enum.each_cons(n) { ... } -> nil
Expand Down Expand Up @@ -1877,7 +1891,7 @@ enum_each_cons(VALUE obj, VALUE n)
NODE *memo;

if (size <= 0) rb_raise(rb_eArgError, "invalid size");
RETURN_ENUMERATOR(obj, 1, &n);
RETURN_SIZED_ENUMERATOR(obj, 1, &n, enum_each_cons_size);
memo = NEW_MEMO(rb_ary_new2(size), 0, size);
rb_block_call(obj, id_each, 0, 0, each_cons_i, (VALUE)memo);

Expand Down
7 changes: 7 additions & 0 deletions test/ruby/test_enumerator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -490,5 +490,12 @@ def test_size_for_each_slice
assert_equal 1, @sized.each_slice(70).size
assert_raise(ArgumentError){ @obj.each_slice(0).size }
end

def test_size_for_each_cons
assert_equal nil, @obj.each_cons(3).size
assert_equal 33, @sized.each_cons(10).size
assert_equal 0, @sized.each_cons(70).size
assert_raise(ArgumentError){ @obj.each_cons(0).size }
end
end

0 comments on commit fe9386c

Please sign in to comment.