aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_lazy_enumerator.rb
Commit message (Expand)AuthorAgeFilesLines
* * enumerator.c: Support for lazy.cycle.sizemarcandre2012-11-061-0/+9
* * enumerator.c: Add support for lazy.drop.sizemarcandre2012-11-061-0/+5
* * enumerator.c: Support for lazy.take.sizemarcandre2012-11-061-0/+5
* * enumerator.c: Support for lazy.{map|flat_map|...}.sizemarcandre2012-11-061-0/+8
* * enumerator.c: Support for lazy.sizemarcandre2012-11-061-0/+6
* test_lazy_enumerator.rb: test for cycle chainnobu2012-07-271-1/+2
* test_lazy_enumerator.rb: test for cycle chainnobu2012-07-271-0/+6
* * enumerator.c (lazy_take_func, lazy_take): multiple calls ofnagachika2012-05-131-0/+8
* * enumerator.c (inspect_enumerator): show method arguments ofshugo2012-03-261-2/+14
* * enumerator (lazy_initialize): set the instance variable "receiver"shugo2012-03-241-0/+4
* * enumerator (enumerator_inspect): include the original receiver andshugo2012-03-241-0/+12
* * enumerator.c (lazy_flat_map_func): convert the block value toshugo2012-03-191-0/+21
* * enumerator.c (lazy_take): don't enumerate an extra value.shugo2012-03-161-1/+5
* * enum.c (rb_enum_values_pack): rename from enum_values_pack, andshugo2012-03-151-0/+42
* * enumerator.c (lazy_zip): rescue StopIteration returned byshugo2012-03-151-0/+6
* * enumerator.c (lazy_zip, lazy_cycle): Enumerator::Lazy#{zip,cycle}shugo2012-03-151-4/+14
* * enumerator.c (InitVM_Enumerator): renamed Enumerable::Lazy toshugo2012-03-151-1/+1
* * enumerator.c (lazy_cycle): add Enumerable::Lazy#cycle.shugo2012-03-151-0/+10
* * enumerator.c (lazy_init_iterator): break when Qundef is returnedshugo2012-03-141-4/+40
* * enumerator.c (lazy_take): add Enumerable::Lazy#take.shugo2012-03-141-0/+8
* * enumerator.c (lazy_grep_func): should use === instead of =~, asnobu2012-03-141-0/+2
* Init_Enumeratornobu2012-03-141-1/+1
* * enumerator.c (lazy_zip_func): use each for non-Array objects.shugo2012-03-131-0/+10
* * enumerator.c (lazy_zip): add Enumerable::Lazy#flat_map.shugo2012-03-131-0/+22
* * enumerator.c (lazy_flat_map): add Enumerable::Lazy#flat_map.shugo2012-03-091-0/+8
* * test/ruby/test_lazy_enumerator.rb: tests for r34951 and r34952.nobu2012-03-091-0/+104