| Commit message (Expand) | Author | Age | Files | Lines |
* | * gc.c: support RGENGC. [ruby-trunk - Feature #8339] | ko1 | 2013-05-13 | 1 | -1/+1 |
* | * *.c, parse.y, insns.def: use RARRAY_AREF/ASET macro | ko1 | 2013-05-13 | 1 | -1/+1 |
* | prefix global symbols | nobu | 2013-03-06 | 1 | -2/+2 |
* | * range.c: Use div instead of / for bsearch | marcandre | 2013-02-05 | 1 | -2/+3 |
* | ChangeLog, range.c: adjust indent and style | nobu | 2013-01-30 | 1 | -6/+10 |
* | * array.c (rb_ary_bsearch): Fix r38986 (typo) [Bug #7726] | marcandre | 2013-01-30 | 1 | -1/+1 |
* | * array.c (rb_ary_bsearch): Fix r38986 (missing whitespace) | marcandre | 2013-01-30 | 1 | -1/+1 |
* | * array.c (rb_ary_bsearch): Raise TypeError on bad return from block | marcandre | 2013-01-30 | 1 | -1/+3 |
* | * range.c: Restrict bsearch to integers [#7728] | marcandre | 2013-01-30 | 1 | -5/+11 |
* | * array.c (rb_ary_bsearch): Return enumerator if no block [#7725] | marcandre | 2013-01-30 | 1 | -0/+2 |
* | * range.c: Fix Range#bsearch for floats [Bug #7724] | marcandre | 2013-01-29 | 1 | -159/+71 |
* | use RB_TYPE_P | nobu | 2012-12-29 | 1 | -1/+1 |
* | * array.c, enum.c, insns.def, io.c, numeric.c, parse.y, process.c, | ko1 | 2012-12-02 | 1 | -3/+4 |
* | remove trailing spaces. | nobu | 2012-11-29 | 1 | -2/+1 |
* | * range.c (rb_range_beg_len): Fix potential bug for limit case [#6203] | marcandre | 2012-11-21 | 1 | -4/+4 |
* | * array.c (rb_ary_bsearch): fix rdoc bug (O(n log n) -> O(log n)). | mame | 2012-11-20 | 1 | -1/+1 |
* | range.c: compare signedness only | nobu | 2012-11-16 | 1 | -5/+3 |
* | * range.c (range_bsearch): fix some bugs: a documentation bug, a wrong | mame | 2012-11-15 | 1 | -8/+8 |
* | * array.c (rb_ary_bsearch): add Array#bsearch for binary search. | mame | 2012-11-14 | 1 | -0/+291 |
* | * range.c: Support for range.step.size | marcandre | 2012-11-06 | 1 | -1/+24 |
* | * range.c: Support for Range#size and Range#each.size | marcandre | 2012-11-06 | 1 | -1/+21 |
* | * include/ruby/ruby.h: add C APIs. | nari | 2012-10-20 | 1 | -2/+1 |
* | trivial changes | tadf | 2012-03-03 | 1 | -1/+1 |
* | * range.c: Improve documentation for Range. Patch by Chris Zetter. | drbrain | 2011-12-05 | 1 | -81/+117 |
* | * use RB_TYPE_P which is optimized for constant types, instead of | nobu | 2011-09-29 | 1 | -3/+3 |
* | * range.c (range_max): fix behavior with excluded end value. | tarui | 2011-07-10 | 1 | -0/+3 |
* | * eval.c, hash.c, load.c, proc.c, range.c, thread.c, time.c: don't | akr | 2011-06-18 | 1 | -2/+0 |
* | * internal.h: declare more internal functions. | akr | 2011-06-18 | 1 | -2/+0 |
* | * internal.h: declare internal functions here. | akr | 2011-06-17 | 1 | -2/+1 |
* | * array.c: Documentation: change => in call-seq to ->. | marcandre | 2010-05-17 | 1 | -27/+27 |
* | * array.c: Harmonize documentation, in particular regarding: | marcandre | 2010-05-13 | 1 | -0/+6 |
* | * range.c (discrete_object_p): needs the argument type to get rid | nobu | 2009-10-02 | 1 | -4/+3 |
* | * time.c (rb_time_succ): make Time#succ obsolete since time is not | matz | 2009-09-30 | 1 | -2/+11 |
* | * range.c: fixed type. | nobu | 2009-09-23 | 1 | -9/+9 |
* | * struct.c (rb_struct_equal, rb_struct_eql): Handle comparison of recursive s... | marcandre | 2009-09-20 | 1 | -19/+30 |
* | * thread.c (rb_exec_recursive_outer, rb_exec_recursive): Added method to shor... | marcandre | 2009-09-15 | 1 | -8/+7 |
* | * include/ruby/st.h (st_hash_func): use st_index_t. | nobu | 2009-09-08 | 1 | -1/+1 |
* | * range.c (range_step): treat symbols specially so that iterating | matz | 2009-08-17 | 1 | -0/+41 |
* | * range.c (range_each): should honor to_str conversion. | matz | 2009-08-17 | 1 | -11/+15 |
* | * range.c (range_eql, range_eq): fixed equality to work for | matz | 2009-08-05 | 1 | -2/+2 |
* | * range.c (recursive_hash): extracted from range_hash. reject | akr | 2009-07-17 | 1 | -10/+19 |
* | * bignum.c (rb_big_new, rb_bigzero_p), range.c (rb_range_values): | nobu | 2009-07-16 | 1 | -6/+21 |
* | * hash.c (rb_hash_hash): documentation fix. a patch from | matz | 2009-07-01 | 1 | -1/+1 |
* | * range.c (r_le): fixed types. | nobu | 2009-05-07 | 1 | -4/+4 |
* | * range.c (range_eql): fixed rdoc. | nobu | 2009-05-07 | 1 | -3/+3 |
* | * range.c (range_each): check #succ only when it is really | matz | 2009-02-23 | 1 | -4/+4 |
* | stripped trailing spaces. | nobu | 2009-02-22 | 1 | -44/+44 |
* | * string.c (rb_hash_uint32, rb_hash_uint, rb_hash_start, rb_hash_end), | mame | 2009-02-14 | 1 | -4/+6 |
* | * range.c (range_step): should not add up errors on loops. | matz | 2009-01-04 | 1 | -3/+6 |
* | * range.c (range_max): max value from ... not defined for non | matz | 2009-01-04 | 1 | -3/+6 |