summaryrefslogtreecommitdiff
path: root/array.c
AgeCommit message (Expand)Author
2008-09-07fix a typo.akr
2008-08-20* array.c (rb_ary_sample): performance improvement for huge array.nobu
2008-08-20* array.c (rb_ary_sample): get rid of infinite loop. #455nobu
2008-08-16* include/ruby/ruby.h (rb_intern_const): tiny optimization.nobu
2008-08-13* object.c (rb_obj_untrusted): new method Object#untrusted?.shugo
2008-08-12* array.c (rb_ary_delete): Array#delete to return deleted element.matz
2008-08-11* array.c (rb_ary_sample): rename #choice to #sample. inmatz
2008-08-05* array.c (rb_ary_sort_bang): reset to real class.nobu
2008-08-04* array.c (rb_ary_sort_bang): respect overridden <=> for String andnobu
2008-08-04* array.c (rb_ary_tmp_new): added.nobu
2008-07-09* array.c (rb_ary_fill): don't raise even if length is negative.akr
2008-07-01* array.c (rb_ary_fill): check if beg is too big.nobu
2008-06-25* array.c (rb_ary_fill): not depend on unspecified behavior at integernobu
2008-06-20* array.c (rb_ary_store, rb_ary_splice): not depend on unspecifiednobu
2008-06-19* array.c (ary_new, rb_ary_initialize, rb_ary_store,shyouhei
2008-06-11* array.c (rb_ary_zip): ANSI style.mame
2008-06-10* array.c (rb_ary_shuffle_bang): update RDoc. [ruby-dev:35034]matz
2008-06-09* include/ruby/ruby.h (CONST_ID): constant ID cache for non-gcc.nobu
2008-06-08* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,ko1
2008-05-31* array.c (rb_ary_delete_if): should return enumerator if no blockmatz
2008-05-29* enum.c (enum_count, count_all_i, Init_Enumerable),knu
2008-05-29Fix a typo.knu
2008-05-28* array.c (rb_ary_nitems, Init_Array): Axe Array#nitems().knu
2008-05-28* array.c (rb_ary_slice_bang): Call rb_ary_modify_check() at theknu
2008-05-27* array.c (rb_ary_slice_bang): Return an empty array instead ofknu
2008-05-23* array.c (rb_ary_slice_bang): Be consistent with Array#slice()knu
2008-05-22* array.c (rb_ary_compact_bang): fix reallocation size.akr
2008-05-22* array.c (flatten): check if reentered. [ruby-dev:34798]nobu
2008-05-22* array.c (flatten): free memo hash table before raising exception.matz
2008-05-21* array.c (flatten): fix memory leak.nagai
2008-05-21* array.c (rb_ary_compact_bang): avoid forceful realloc.matz
2008-05-17* array.c (rb_ary_sort_bang): should not free shared pointer, and setnobu
2008-05-16* array.c (rb_ary_sort_bang): stop memory leak. [ruby-dev:34726]matz
2008-05-14* array.c (rb_ary_count): Override Enumerable#count for betterknu
2008-05-08* array.c (rb_ary_sort_bang): freeze temporary array.nobu
2008-05-08array.c: typo fixed; sorry!matz
2008-05-08* array.c (sort_reentered): reentered check may be called frommatz
2008-05-08* array.c (sort_1, sort_2): check for reentered and if elements arenobu
2008-05-07* array.c (sort_1, sort_2): check reentered. [ruby-core:16679]nobu
2008-05-05* array.c (rb_ary_slice_bang): should adjust length before makingmatz
2008-05-05* array.c (rb_ary_dup): should dupe corresponding information.matz
2008-04-25* array.c (flatten): returns an instance of same class.nobu
2008-04-15* array.c (rb_ary_take_while, rb_ary_drop_while): removed unusednobu
2008-04-14* array.c (ary_new): new integer overflow check condition.matz
2008-04-13* enum.c (enum_cycle): Make Enumerable#cycle do a finite loop whenknu
2008-04-11* enum.c (enum_find_index): Add support for find_index(obj);knu
2008-04-10Fix mistake in the previous commit.knu
2008-04-10* array.c (rb_ary_pop_m, rb_ary_shift_m): Update documents forknu
2008-03-25* array.c (ary_new): fix size check. [ruby-dev:34123]mame
2008-03-17* array.c (rb_ary_take, rb_ary_take_while, rb_ary_drop,mame