| Commit message (Expand) | Author | Age | Files | Lines |
* | initialize IDs in advance. | nobu | 2012-04-03 | 1 | -9/+12 |
* | * enumerator.c (inspect_enumerator): suppress uninitialized | nobu | 2012-04-03 | 1 | -3/+3 |
* | * enumerator.c (inspect_enumerator): show method arguments of | shugo | 2012-03-26 | 1 | -36/+68 |
* | * enumerator (lazy_initialize): set the instance variable "receiver" | shugo | 2012-03-24 | 1 | -22/+8 |
* | * enumerator (enumerator_inspect): include the original receiver and | shugo | 2012-03-24 | 1 | -25/+64 |
* | * enumerator.c (lazy_flat_map_func): convert the block value to | shugo | 2012-03-19 | 1 | -1/+31 |
* | * enumerator.c (enumerable_lazy): add an example of take and first | shugo | 2012-03-19 | 1 | -2/+4 |
* | follow r35040 | kazu | 2012-03-16 | 1 | -1/+1 |
* | * enumerator.c (lazy_take): don't enumerate an extra value. | shugo | 2012-03-16 | 1 | -4/+15 |
* | * enumerator.c (lazy_zip_func): variadic argument needs explicit cast | nobu | 2012-03-15 | 1 | -1/+1 |
* | * enumerator.c (lazy_init_iterator): no need to check overflow twice. | nobu | 2012-03-15 | 1 | -1/+1 |
* | * enumerator.c (lazy_init_iterator): Fix type error (int vs long). | drbrain | 2012-03-15 | 1 | -1/+1 |
* | * enum.c (rb_enum_values_pack): rename from enum_values_pack, and | shugo | 2012-03-15 | 1 | -29/+53 |
* | * enumerator.c (lazy_zip): rescue StopIteration returned by | shugo | 2012-03-15 | 1 | -1/+14 |
* | * enumerator.c (lazy_zip, lazy_cycle): Enumerator::Lazy#{zip,cycle} | shugo | 2012-03-15 | 1 | -23/+8 |
* | * enumerator.c (InitVM_Enumerator): renamed Enumerable::Lazy to | shugo | 2012-03-15 | 1 | -1/+1 |
* | * enumerator.c (enumerator_lazy): added cycle to the documentation. | shugo | 2012-03-15 | 1 | -2/+2 |
* | * enumerator.c (lazy_cycle): check argument number overflow before | nobu | 2012-03-15 | 1 | -8/+9 |
* | * enumerator.c (lazy_cycle): add Enumerable::Lazy#cycle. | shugo | 2012-03-15 | 1 | -3/+43 |
* | * include/ruby/intern.h: Add rb_check_arity, rb_error_arity [#6085] | marcandre | 2012-03-14 | 1 | -1/+1 |
* | * enumerator.c (enumerable_lazy): fix the documentation of | shugo | 2012-03-14 | 1 | -4/+8 |
* | * enumerator.c (lazy_init_iterator): break when Qundef is returned | shugo | 2012-03-14 | 1 | -5/+76 |
* | * enumerator.c (lazy_take): add Enumerable::Lazy#take. | shugo | 2012-03-14 | 1 | -1/+33 |
* | * enumerator.c: use long for array indices. | shugo | 2012-03-14 | 1 | -3/+3 |
* | * enumerator.c: moved the comment of StopIteration. | shugo | 2012-03-14 | 1 | -47/+47 |
* | * enumerator.c (lazy_grep_func): should use === instead of =~, as | nobu | 2012-03-14 | 1 | -2/+4 |
* | InitVM_Enumerator | nobu | 2012-03-14 | 1 | -2/+8 |
* | Init_Enumerator | nobu | 2012-03-14 | 1 | -6/+9 |
* | * enumerator.c (lazy_zip_func): use each for non-Array objects. | shugo | 2012-03-13 | 1 | -8/+13 |
* | * enumerator.c (lazy_zip): add Enumerable::Lazy#flat_map. | shugo | 2012-03-13 | 1 | -0/+59 |
* | * enumerator.c (enumerable_lazy): added the documenation of Enumerable#lazy. | shugo | 2012-03-12 | 1 | -0/+21 |
* | * enumerator.c: remove trailing space. | ktsj | 2012-03-10 | 1 | -1/+1 |
* | * enumerator.c (lazy_flat_map): add Enumerable::Lazy#flat_map. | shugo | 2012-03-09 | 1 | -0/+28 |
* | * enumerator.c (lazy_initialize, enumerable_lazy): no additional | nobu | 2012-03-08 | 1 | -22/+9 |
* | * enumerator.c: add Enumerable#lazy. based on the patch by | nobu | 2012-03-08 | 1 | -1/+171 |
* | * enumerator.c (enumerator_each, generator_each): pass arguments to | nobu | 2012-03-08 | 1 | -8/+25 |
* | * enumerator.c (enumerator_rewind): update the documentation. | matz | 2012-02-20 | 1 | -1/+1 |
* | * enumerator.c: Document use of Enumerator.new for creating a lazy | drbrain | 2012-02-13 | 1 | -4/+66 |
* | * use RB_TYPE_P which is optimized for constant types, instead of | nobu | 2011-09-29 | 1 | -1/+1 |
* | * enumerator.c: Remove "enumeration sequenced by". | drbrain | 2011-07-09 | 1 | -3/+3 |
* | * internal.h: declare internal functions here. | akr | 2011-06-17 | 1 | -2/+0 |
* | More clarification for enumerator_feed | ryan | 2011-06-01 | 1 | -2/+2 |
* | Extra formatting and clarification of enumerator_feed [#4757] | ryan | 2011-05-31 | 1 | -14/+18 |
* | * enumerator.c: Improve documentation. Patch by Dave Copeland. | drbrain | 2011-05-22 | 1 | -142/+192 |
* | * include/ruby/ruby.h (rb_data_type_t): restructured. [ruby-dev:41862] | nobu | 2010-07-18 | 1 | -9/+15 |
* | * removed trailing spaces. | nobu | 2010-05-29 | 1 | -9/+9 |
* | * array.c: Documentation: change => in call-seq to ->. | marcandre | 2010-05-17 | 1 | -8/+8 |
* | * error.c: RDoc for subclasses of Exception. [ruby-core:28394] | marcandre | 2010-05-08 | 1 | -1/+16 |
* | * enumerator.c (inspect_enumerator): don't raise for uninitialized | akr | 2010-04-12 | 1 | -2/+10 |
* | * enumerator.c: move implementation of each_slice, each_cons, | matz | 2010-02-03 | 1 | -142/+0 |