| Commit message (Expand) | Author | Age | Files | Lines |
* | use rb_funcallv | nobu | 2015-02-16 | 1 | -2/+2 |
* | range.c: trivial optimizations | nobu | 2015-01-13 | 1 | -9/+7 |
* | range.c: class name encoding | nobu | 2015-01-13 | 1 | -3/+3 |
* | range.c: reduce argument evaluations | nobu | 2015-01-13 | 1 | -1/+2 |
* | * internal.h: Include ruby.h and ruby/encoding.h to be | akr | 2014-11-15 | 1 | -2/+0 |
* | range.c: unused function | nobu | 2014-03-14 | 1 | -7/+0 |
* | [DOC] add links to `Object#hash` | nobu | 2014-03-14 | 1 | -0/+2 |
* | Range#bsearch: fix typo in rdoc | marcandre | 2014-02-15 | 1 | -1/+1 |
* | * enum.c: Enumerable#{min,min_by,max,max_by} extended to take an | akr | 2014-02-14 | 1 | -11/+18 |
* | * range.c (Range#size): [DOC] improve description and add examples. | eregon | 2014-01-09 | 1 | -1/+4 |
* | hash.c: detect recursion for all | nobu | 2013-12-03 | 1 | -20/+12 |
* | range.c: revert the old behavior | nobu | 2013-11-30 | 1 | -1/+1 |
* | vm_eval.c: rb_yield_block | nobu | 2013-11-29 | 1 | -1/+1 |
* | ruby/ruby.h: RB_BLOCK_CALL_FUNC_ARGLIST | nobu | 2013-11-29 | 1 | -5/+5 |
* | array.c, enum.c, range.c: rb_block_call_func compatible | nobu | 2013-11-29 | 1 | -1/+2 |
* | ruby/ruby.h: add blockarg to rb_block_call_func | nobu | 2013-11-29 | 1 | -11/+11 |
* | should not ignore the rest of recursive constructs | nobu | 2013-11-26 | 1 | -1/+1 |
* | range.c: modify check | nobu | 2013-10-26 | 1 | -5/+19 |
* | range.c: fix int and VALUE | nobu | 2013-10-25 | 1 | -5/+7 |
* | range.c: setter macros | nobu | 2013-10-25 | 1 | -6/+9 |
* | range.c: revert r42400 | nobu | 2013-08-08 | 1 | -16/+1 |
* | range.c: return nil for empty range | nobu | 2013-08-06 | 1 | -2/+9 |
* | range.c: consider exclusive | nobu | 2013-08-06 | 1 | -1/+9 |
* | intern.h: define rb_enumerator_size_func | nobu | 2013-06-26 | 1 | -2/+8 |
* | * include/ruby/ruby.h: support write barrier protection for T_STRUCT. | ko1 | 2013-06-21 | 1 | -6/+11 |
* | * range.c: Fix rdoc on Range#bsearch [Bug #8242] [ruby-core:54143] | zzak | 2013-06-02 | 1 | -2/+2 |
* | fix typos. Patch by k_takata. | ktsj | 2013-05-19 | 1 | -1/+1 |
* | * 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 |