| Commit message (Expand) | Author | Age | Files | Lines |
* | * enum.c (zip_ary): should use long. | nobu | 2009-05-20 | 1 | -1/+1 |
* | stripped trailing spaces. | nobu | 2009-02-22 | 1 | -3/+3 |
* | * array.c (take_items), enum.c (enum_zip): tries to convert to | nobu | 2009-01-19 | 1 | -2/+6 |
* | * include/ruby/node.h, node.h: move node.h from include path. | ko1 | 2008-09-23 | 1 | -1/+1 |
* | * enum.c (enum_take): get rid of extraneous iteration. | nobu | 2008-08-20 | 1 | -2/+3 |
* | * include/ruby/ruby.h (rb_intern_const): tiny optimization. | nobu | 2008-08-16 | 1 | -0/+1 |
* | * enum.c (sort_by_i): use NODE_DOT2 instead of NODE_MEMO to avoid | matz | 2008-06-13 | 1 | -2/+4 |
* | * include/ruby/ruby.h (CONST_ID): constant ID cache for non-gcc. | nobu | 2008-06-09 | 1 | -1/+3 |
* | * enum.c (enum_count, count_all_i, Init_Enumerable), | knu | 2008-05-29 | 1 | -5/+27 |
* | * enum.c (enum_to_a): Pass arguments through to #each(). | knu | 2008-05-27 | 1 | -5/+31 |
* | Cosmetic. | knu | 2008-05-27 | 1 | -33/+33 |
* | * enum.c (enum_yield): use rb_yield_values2. | nobu | 2008-05-13 | 1 | -54/+26 |
* | * enum.c (grep_i): Be aware of multiple values; | knu | 2008-05-12 | 1 | -50/+124 |
* | * enum.c (all_iter_i, any_iter_i): reduced duplicated code. | nobu | 2008-05-11 | 1 | -16/+8 |
* | * enum.c: removed trailing garbage spaces. | nobu | 2008-05-11 | 1 | -110/+110 |
* | * enum.c (enum_cycle): Make Enumerable#cycle do a finite loop when | knu | 2008-04-13 | 1 | -10/+25 |
* | * enum.c (count_i): modified to shut warning up. | matz | 2008-04-11 | 1 | -1/+1 |
* | * enum.c (count_i, count_iter_i, enum_count, enum_find_index): | knu | 2008-04-11 | 1 | -33/+25 |
* | * enum.c (find_index_i): modified to shut warning up. | matz | 2008-04-11 | 1 | -2/+5 |
* | * enum.c (enum_find_index): Add support for find_index(obj); | knu | 2008-04-11 | 1 | -15/+44 |
* | * array.c (ary_new): fix size check. [ruby-dev:34123] | mame | 2008-03-25 | 1 | -4/+14 |
* | * enum.c (zip_ary): wrong boundary condition. | matz | 2008-03-13 | 1 | -1/+1 |
* | * enum.c (enum_zip): optimize if all arguments are arrays. | matz | 2008-03-11 | 1 | -3/+42 |
* | fix doc. | akr | 2008-03-09 | 1 | -5/+5 |
* | * numeric.c (fix_to_s): avoid rb_scan_args() when no argument | matz | 2008-03-05 | 1 | -2/+1 |
* | * enum.c (enum_one, enum_take_while, enum_drop_while): fix documents. | mame | 2008-01-24 | 1 | -4/+5 |
* | * enum.c: Updating the documentation of Enumrable#zip to reflect | jeg2 | 2008-01-08 | 1 | -6/+7 |
* | * enum.c (enum_zip): honor length of the receiver, not the | matz | 2008-01-08 | 1 | -14/+35 |
* | * $Date$ keyword removed to avoid inclusion of locale dependent | akr | 2008-01-06 | 1 | -1/+0 |
* | fix typos. | akr | 2007-12-31 | 1 | -3/+3 |
* | * enum.c (collect_all): should pack all values. [ruby-core:14410] | matz | 2007-12-25 | 1 | -2/+2 |
* | * enum.c (enum_yield): when multiple values yielded from #each | matz | 2007-12-25 | 1 | -43/+57 |
* | * enum.c (enum_inject): updated documentation. a patch from Keita | matz | 2007-12-23 | 1 | -3/+3 |
* | * enum.c (enum_count): suppress warning. | akr | 2007-12-08 | 1 | -1/+3 |
* | * enum.c (enum_count): precise argument number check. | matz | 2007-11-30 | 1 | -2/+7 |
* | * enum.c (enum_take_while): returns Enumerator if no block given. | matz | 2007-11-30 | 1 | -0/+2 |
* | * enum.c (each_with_index_i): use rb_yield_values() for | matz | 2007-11-09 | 1 | -1/+1 |
* | * enum.c (enum_each_with_index): make different arrays at each | nobu | 2007-11-07 | 1 | -13/+6 |
* | * enum.c (take_while_i, drop_while_i) add RTEST to handle nil return | davidflanagan | 2007-11-01 | 1 | -2/+2 |
* | * enum.c (enum_drop): fix typo. | usa | 2007-10-31 | 1 | -1/+1 |
* | * enum.c (enum_take_while): separate with-block form. | matz | 2007-10-30 | 1 | -89/+73 |
* | * enum.c (enum_butfirst): add a new method to iterates over | matz | 2007-10-30 | 1 | -0/+38 |
* | * enum.c (enum_cycle): hide temporary array from ObjectSpace. | matz | 2007-10-22 | 1 | -4/+7 |
* | * enum.c (enum_find_index): update RDoc. a patch from David Flanagan | matz | 2007-10-18 | 1 | -14/+18 |
* | * range.c (range_first): takes first n element if argument is | matz | 2007-10-18 | 1 | -1/+1 |
* | * enum.c (enum_inject): RDoc update. a patch from David Flanagan | matz | 2007-10-15 | 1 | -55/+38 |
* | * encoding.c: provide basic features for M17N. | matz | 2007-08-25 | 1 | -1/+1 |
* | * enum.c (enum_cycle): typo fixed. a patch from Kazuhiro | matz | 2007-08-08 | 1 | -1/+1 |
* | * enumerator.c (enumerator_next_p): should check correctly even when | matz | 2007-08-08 | 1 | -1/+1 |
* | * enum.c (enum_zip): zip no longer converts arguments into | matz | 2007-08-06 | 1 | -26/+30 |