aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
Commit message (Expand)AuthorAgeFilesLines
* * array.c (rb_ary_count): Override Enumerable#count for betterknu2008-05-141-0/+44
* * array.c (rb_ary_sort_bang): freeze temporary array.nobu2008-05-081-0/+3
* array.c: typo fixed; sorry!matz2008-05-081-4/+4
* * array.c (sort_reentered): reentered check may be called frommatz2008-05-081-2/+2
* * array.c (sort_1, sort_2): check for reentered and if elements arenobu2008-05-081-3/+7
* * array.c (sort_1, sort_2): check reentered. [ruby-core:16679]nobu2008-05-071-2/+12
* * array.c (rb_ary_slice_bang): should adjust length before makingmatz2008-05-051-0/+3
* * array.c (rb_ary_dup): should dupe corresponding information.matz2008-05-051-1/+1
* * array.c (flatten): returns an instance of same class.nobu2008-04-251-1/+1
* * array.c (rb_ary_take_while, rb_ary_drop_while): removed unusednobu2008-04-151-2/+0
* * array.c (ary_new): new integer overflow check condition.matz2008-04-141-2/+2
* * enum.c (enum_cycle): Make Enumerable#cycle do a finite loop whenknu2008-04-131-9/+25
* * enum.c (enum_find_index): Add support for find_index(obj);knu2008-04-111-0/+3
* Fix mistake in the previous commit.knu2008-04-101-2/+2
* * array.c (rb_ary_pop_m, rb_ary_shift_m): Update documents forknu2008-04-101-9/+11
* * array.c (ary_new): fix size check. [ruby-dev:34123]mame2008-03-251-3/+11
* * array.c (rb_ary_take, rb_ary_take_while, rb_ary_drop,mame2008-03-171-0/+95
* * array.c (rb_ary_slice_bang): should not use rb_ary_subseq()matz2008-03-131-1/+2
* * array.c (rb_ary_combination): argument check before creatingmatz2008-03-111-2/+2
* fix doc.akr2008-03-091-5/+7
* fix rdoc.akr2008-03-071-2/+1
* * numeric.c (fix_to_s): avoid rb_scan_args() when no argumentmatz2008-03-051-16/+16
* * array.c (combi_len, rb_ary_product): check for overflow.nobu2008-02-261-2/+10
* * array.c (recursive_cmp): compare minimal length parts.nobu2008-02-261-1/+1
* * array.c (rb_ary_eql, rb_ary_cmp): get rid of stack overflow withnobu2008-02-261-19/+39
* * array.c (rb_ary_unshift_m): expands enough for argc. [ruby-dev:33880]nobu2008-02-211-4/+4
* * string.c (rb_str_usascii_new{,2}: defined.naruse2008-01-251-2/+2
* * array.c (sort_1): remove ary_sort_check(). in-place sort keepmatz2008-01-241-43/+12
* * array.c (collect_bang_i): use rb_ary_store() to avoid potentialmatz2008-01-241-129/+50
* * include/ruby/intern.h (rb_str_tmp_new, rb_str_shared_replace):nobu2008-01-161-1/+0
* * enum.c (enum_zip): honor length of the receiver, not thematz2008-01-081-0/+79
* * $Date$ keyword removed to avoid inclusion of locale dependentakr2008-01-061-1/+0
* fix typos.akr2007-12-311-2/+2
* * array.c (tmpbuf): use rb_str_tmp_new().nobu2007-12-261-8/+2
* * include/ruby/intern.h, random.c, array.c:akr2007-12-241-2/+2
* * array.c (rb_ary_at): updated documentation. a patch from Tadashimatz2007-12-231-2/+0
* * array.c (rb_ary_permutation): add volatile to avoid GC problem.ko12007-12-221-2/+2
* * array.c (rb_ary_slice_bang): If an invalid range is given, doknu2007-12-101-2/+12
* * array.c (rb_ary_slice_bang): should return nil if position outmatz2007-12-101-0/+1
* * array.c (flatten): some performance improvements, based on a patchnobu2007-12-071-48/+59
* * insns.def (concatarray, splatarray): use to_a instead ofmatz2007-12-011-1/+0
* * array.c (rb_ary_permutation): add gc guard codes.ko12007-11-211-2/+4
* * array.c (rb_ary_permutation): gives all permutations of elementsmatz2007-11-191-5/+11
* * array.c (rb_ary_product): core dumped with non array arguments.matz2007-11-061-1/+1
* * array.c (rb_ary_each_index): should return meaningful value.matz2007-11-061-0/+1
* array.c: raise IndexError for negative length in rb_ary_filldavidflanagan2007-10-261-0/+1
* * array.c (rb_ary_assoc): check and convert inner arrays (assocs)matz2007-10-251-3/+2
* * range.c (range_first): takes first n element if argument ismatz2007-10-181-2/+2
* * array.c (rb_ary_combination): fixed memory corruption due to toomatz2007-10-121-2/+2
* * array.c (rb_ary_permutation): use frozen shared hidden array.nobu2007-10-091-4/+3