aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
Commit message (Expand)AuthorAgeFilesLines
* * array.c (rb_ary_aref): give warning if index is a symbol.matz2003-03-041-0/+15
* * array.c (rb_ary_to_a): return value should be an Array if thematz2003-02-101-1/+13
* typonobu2003-02-041-1/+1
* * array.c (rb_ary_equal): a == b is true when b is non T_ARRAYmatz2003-02-041-1/+6
* * object.c (Init_Object): default Object#=== now calls "=="matz2003-02-031-9/+2
* * re.c (rb_memsearch): algolithm body of String#index.matz2003-02-031-17/+17
* Updated Copyrights of Matz to 2003.michal2003-01-161-1/+1
* * range.c (range_each): treat fixnums specially to boost.matz2003-01-081-1/+1
* * hash.c (env_clear): new Hash compatible method.matz2003-01-071-16/+29
* * eval.c (massign): removed awkward conversion between yvalue,matz2003-01-011-2/+1
* * array.c (rb_ary_transpose): Properly declare ary as a VALUE.knu2002-12-311-0/+1
* * array.c (ary_alloc), dir.c (dir_s_alloc), eval.c (thgroup_s_alloc),usa2002-12-211-0/+1
* * parse.y (do_block): split "do" block and tLBRACE_ARG block.matz2002-12-201-5/+5
* * numeric.c (num_step): use DBL_EPSILON.matz2002-12-191-1/+8
* * sprintf.c (rb_f_sprintf): preceding ".." for negative numbersmatz2002-12-101-1/+1
* * file.c (rb_find_file_ext): should not terminate searching withmatz2002-11-221-14/+0
* * array.c (rb_ary_zip): iterates over items in the receiver.matz2002-11-191-2/+43
* * object.c (Init_Object): added Object#object_id, new name formatz2002-11-031-0/+28
* * variable.c (rb_copy_generic_ivar): remove old generic instancematz2002-09-031-23/+15
* * array.c (rb_ary_become): should not free ptr if it's shared.matz2002-08-291-1/+2
* * file.c (rb_find_file): $LOAD_PATH must not be empty.matz2002-08-271-35/+16
* array small opt. changes (ruby-core:355)michal2002-08-271-8/+8
* array.c: Mem optim for Array#selectmichal2002-08-231-1/+3
* array.c: Int vs Long #2michal2002-08-231-24/+21
* *.c: Int vs Long cleanupmichal2002-08-211-6/+6
* * array.c (sort_2): fatal typo.matz2002-08-191-1/+1
* * array.c (sort_2): comparison should be done as signed long.matz2002-08-191-4/+4
* * array.c (sort_2): *a - *b may overflow.matz2002-08-191-10/+13
* * hash.c (rb_hash_replace): should copy ifnone.matz2002-08-131-11/+10
* * string.c (rb_str_slice_bang): if there's no correspondingmatz2002-07-111-1/+1
* * array.c: fixed format string for 'long' args (%d -> %ld).michal2002-05-281-4/+4
* minor bug fixes.matz2002-05-221-4/+2
* * object.c (Init_Object): should do exact match for Module#==.matz2002-05-211-145/+132
* * io.c (rb_io_mode_flags): both 'r+b' and 'rb+' should be allowed.matz2002-04-241-7/+0
* * re.c (rb_reg_expr_str): should treat backslash specially inmatz2002-04-181-1/+1
* * eval.c (cvar_cbase): utility function to find innermost nonmatz2002-03-081-1/+1
* * array.c (rb_ary_fill): shouldn't yield unless block given.nobu2002-01-281-1/+1
* * eval.c (is_defined): defined?(Foo::Baz) should check constantsmatz2002-01-281-9/+45
* * class.c (rb_include_module): detect cyclic module inclusion.matz2002-01-251-2/+10
* * array.c (Init_Array): remove Array#filter.matz2002-01-231-9/+0
* * eval.c (rb_eval): need not to clar method cache for NODE_CLASS,matz2002-01-191-1/+2
* * re.c (match_select): should propagate taintness.matz2002-01-111-1/+1
* * array.c (rb_cmpint): fixed typo.nobu2001-12-281-2/+2
* * intern.h: add prototypes.nobu2001-12-171-1/+1
* * time.c (time_new_internal): avoid loop to calculate negativematz2001-12-131-1/+3
* * string.c (rb_str_match_m): should convert an argument intomatz2001-12-111-0/+30
* * array.c (rb_ary_modify): should copy the internal buffer if thematz2001-12-101-92/+117
* * marshal.c (w_float): must distinguish -0.0 from 0.0.matz2001-11-271-1/+23
* * eval.c (rb_mod_modfunc): should follow NODE_ZSUPER link; basedmatz2001-11-191-2/+4
* * parse.y (parse_regx): should raise error on untermitatedmatz2001-11-191-7/+9