Ruby 3.5.0dev (2025-04-04 revision 6b5e187d0eb07994fee7b5f0336da388a793dcbb)
range.c (6b5e187d0eb07994fee7b5f0336da388a793dcbb)
1/**********************************************************************
2
3 range.c -
4
5 $Author$
6 created at: Thu Aug 19 17:46:47 JST 1993
7
8 Copyright (C) 1993-2007 Yukihiro Matsumoto
9
10**********************************************************************/
11
12#include "ruby/internal/config.h"
13
14#include <assert.h>
15#include <math.h>
16
17#ifdef HAVE_FLOAT_H
18#include <float.h>
19#endif
20
21#include "id.h"
22#include "internal.h"
23#include "internal/array.h"
24#include "internal/compar.h"
25#include "internal/enum.h"
26#include "internal/enumerator.h"
27#include "internal/error.h"
28#include "internal/numeric.h"
29#include "internal/range.h"
30
32static ID id_beg, id_end, id_excl;
33#define id_cmp idCmp
34#define id_succ idSucc
35#define id_min idMin
36#define id_max idMax
37#define id_plus '+'
38
39static VALUE r_cover_p(VALUE, VALUE, VALUE, VALUE);
40
41#define RANGE_SET_BEG(r, v) (RSTRUCT_SET(r, 0, v))
42#define RANGE_SET_END(r, v) (RSTRUCT_SET(r, 1, v))
43#define RANGE_SET_EXCL(r, v) (RSTRUCT_SET(r, 2, v))
44
45#define EXCL(r) RTEST(RANGE_EXCL(r))
46
47static void
48range_init(VALUE range, VALUE beg, VALUE end, VALUE exclude_end)
49{
50 if ((!FIXNUM_P(beg) || !FIXNUM_P(end)) && !NIL_P(beg) && !NIL_P(end)) {
51 VALUE v;
52
53 v = rb_funcall(beg, id_cmp, 1, end);
54 if (NIL_P(v))
55 rb_raise(rb_eArgError, "bad value for range");
56 }
57
58 RANGE_SET_EXCL(range, exclude_end);
59 RANGE_SET_BEG(range, beg);
60 RANGE_SET_END(range, end);
61
62 if (CLASS_OF(range) == rb_cRange) {
63 rb_obj_freeze(range);
64 }
65}
66
68rb_range_new(VALUE beg, VALUE end, int exclude_end)
69{
71
72 range_init(range, beg, end, RBOOL(exclude_end));
73 return range;
74}
75
76static void
77range_modify(VALUE range)
78{
79 rb_check_frozen(range);
80 /* Ranges are immutable, so that they should be initialized only once. */
81 if (RANGE_EXCL(range) != Qnil) {
82 rb_name_err_raise("'initialize' called twice", range, ID2SYM(idInitialize));
83 }
84}
85
86/*
87 * call-seq:
88 * Range.new(begin, end, exclude_end = false) -> new_range
89 *
90 * Returns a new range based on the given objects +begin+ and +end+.
91 * Optional argument +exclude_end+ determines whether object +end+
92 * is included as the last object in the range:
93 *
94 * Range.new(2, 5).to_a # => [2, 3, 4, 5]
95 * Range.new(2, 5, true).to_a # => [2, 3, 4]
96 * Range.new('a', 'd').to_a # => ["a", "b", "c", "d"]
97 * Range.new('a', 'd', true).to_a # => ["a", "b", "c"]
98 *
99 */
100
101static VALUE
102range_initialize(int argc, VALUE *argv, VALUE range)
103{
104 VALUE beg, end, flags;
105
106 rb_scan_args(argc, argv, "21", &beg, &end, &flags);
107 range_modify(range);
108 range_init(range, beg, end, RBOOL(RTEST(flags)));
109 return Qnil;
110}
111
112/* :nodoc: */
113static VALUE
114range_initialize_copy(VALUE range, VALUE orig)
115{
116 range_modify(range);
117 rb_struct_init_copy(range, orig);
118 return range;
119}
120
121/*
122 * call-seq:
123 * exclude_end? -> true or false
124 *
125 * Returns +true+ if +self+ excludes its end value; +false+ otherwise:
126 *
127 * Range.new(2, 5).exclude_end? # => false
128 * Range.new(2, 5, true).exclude_end? # => true
129 * (2..5).exclude_end? # => false
130 * (2...5).exclude_end? # => true
131 */
132
133static VALUE
134range_exclude_end_p(VALUE range)
135{
136 return RBOOL(EXCL(range));
137}
138
139static VALUE
140recursive_equal(VALUE range, VALUE obj, int recur)
141{
142 if (recur) return Qtrue; /* Subtle! */
143 if (!rb_equal(RANGE_BEG(range), RANGE_BEG(obj)))
144 return Qfalse;
145 if (!rb_equal(RANGE_END(range), RANGE_END(obj)))
146 return Qfalse;
147
148 return RBOOL(EXCL(range) == EXCL(obj));
149}
150
151
152/*
153 * call-seq:
154 * self == other -> true or false
155 *
156 * Returns +true+ if and only if:
157 *
158 * - +other+ is a range.
159 * - <tt>other.begin == self.begin</tt>.
160 * - <tt>other.end == self.end</tt>.
161 * - <tt>other.exclude_end? == self.exclude_end?</tt>.
162 *
163 * Otherwise returns +false+.
164 *
165 * r = (1..5)
166 * r == (1..5) # => true
167 * r = Range.new(1, 5)
168 * r == 'foo' # => false
169 * r == (2..5) # => false
170 * r == (1..4) # => false
171 * r == (1...5) # => false
172 * r == Range.new(1, 5, true) # => false
173 *
174 * Note that even with the same argument, the return values of #== and #eql? can differ:
175 *
176 * (1..2) == (1..2.0) # => true
177 * (1..2).eql? (1..2.0) # => false
178 *
179 * Related: Range#eql?.
180 *
181 */
182
183static VALUE
184range_eq(VALUE range, VALUE obj)
185{
186 if (range == obj)
187 return Qtrue;
188 if (!rb_obj_is_kind_of(obj, rb_cRange))
189 return Qfalse;
190
191 return rb_exec_recursive_paired(recursive_equal, range, obj, obj);
192}
193
194/* compares _a_ and _b_ and returns:
195 * < 0: a < b
196 * = 0: a = b
197 * > 0: a > b or non-comparable
198 */
199static int
200r_less(VALUE a, VALUE b)
201{
202 VALUE r = rb_funcall(a, id_cmp, 1, b);
203
204 if (NIL_P(r))
205 return INT_MAX;
206 return rb_cmpint(r, a, b);
207}
208
209static VALUE
210recursive_eql(VALUE range, VALUE obj, int recur)
211{
212 if (recur) return Qtrue; /* Subtle! */
213 if (!rb_eql(RANGE_BEG(range), RANGE_BEG(obj)))
214 return Qfalse;
215 if (!rb_eql(RANGE_END(range), RANGE_END(obj)))
216 return Qfalse;
217
218 return RBOOL(EXCL(range) == EXCL(obj));
219}
220
221/*
222 * call-seq:
223 * eql?(other) -> true or false
224 *
225 * Returns +true+ if and only if:
226 *
227 * - +other+ is a range.
228 * - <tt>other.begin.eql?(self.begin)</tt>.
229 * - <tt>other.end.eql?(self.end)</tt>.
230 * - <tt>other.exclude_end? == self.exclude_end?</tt>.
231 *
232 * Otherwise returns +false+.
233 *
234 * r = (1..5)
235 * r.eql?(1..5) # => true
236 * r = Range.new(1, 5)
237 * r.eql?('foo') # => false
238 * r.eql?(2..5) # => false
239 * r.eql?(1..4) # => false
240 * r.eql?(1...5) # => false
241 * r.eql?(Range.new(1, 5, true)) # => false
242 *
243 * Note that even with the same argument, the return values of #== and #eql? can differ:
244 *
245 * (1..2) == (1..2.0) # => true
246 * (1..2).eql? (1..2.0) # => false
247 *
248 * Related: Range#==.
249 */
250
251static VALUE
252range_eql(VALUE range, VALUE obj)
253{
254 if (range == obj)
255 return Qtrue;
256 if (!rb_obj_is_kind_of(obj, rb_cRange))
257 return Qfalse;
258 return rb_exec_recursive_paired(recursive_eql, range, obj, obj);
259}
260
261/*
262 * call-seq:
263 * hash -> integer
264 *
265 * Returns the integer hash value for +self+.
266 * Two range objects +r0+ and +r1+ have the same hash value
267 * if and only if <tt>r0.eql?(r1)</tt>.
268 *
269 * Related: Range#eql?, Object#hash.
270 */
271
272static VALUE
273range_hash(VALUE range)
274{
275 st_index_t hash = EXCL(range);
276 VALUE v;
277
278 hash = rb_hash_start(hash);
279 v = rb_hash(RANGE_BEG(range));
280 hash = rb_hash_uint(hash, NUM2LONG(v));
281 v = rb_hash(RANGE_END(range));
282 hash = rb_hash_uint(hash, NUM2LONG(v));
283 hash = rb_hash_uint(hash, EXCL(range) << 24);
284 hash = rb_hash_end(hash);
285
286 return ST2FIX(hash);
287}
288
289static void
290range_each_func(VALUE range, int (*func)(VALUE, VALUE), VALUE arg)
291{
292 int c;
293 VALUE b = RANGE_BEG(range);
294 VALUE e = RANGE_END(range);
295 VALUE v = b;
296
297 if (EXCL(range)) {
298 while (r_less(v, e) < 0) {
299 if ((*func)(v, arg)) break;
300 v = rb_funcallv(v, id_succ, 0, 0);
301 }
302 }
303 else {
304 while ((c = r_less(v, e)) <= 0) {
305 if ((*func)(v, arg)) break;
306 if (!c) break;
307 v = rb_funcallv(v, id_succ, 0, 0);
308 }
309 }
310}
311
312// NB: Two functions below (step_i_iter, sym_step_i and step_i) are used only to maintain the
313// backward-compatible behavior for string and symbol ranges with integer steps. If that branch
314// will be removed from range_step, these two can go, too.
315static bool
316step_i_iter(VALUE arg)
317{
318 VALUE *iter = (VALUE *)arg;
319
320 if (FIXNUM_P(iter[0])) {
321 iter[0] -= INT2FIX(1) & ~FIXNUM_FLAG;
322 }
323 else {
324 iter[0] = rb_funcall(iter[0], '-', 1, INT2FIX(1));
325 }
326 if (iter[0] != INT2FIX(0)) return false;
327 iter[0] = iter[1];
328 return true;
329}
330
331static int
332sym_step_i(VALUE i, VALUE arg)
333{
334 if (step_i_iter(arg)) {
336 }
337 return 0;
338}
339
340static int
341step_i(VALUE i, VALUE arg)
342{
343 if (step_i_iter(arg)) {
344 rb_yield(i);
345 }
346 return 0;
347}
348
349static int
350discrete_object_p(VALUE obj)
351{
352 return rb_respond_to(obj, id_succ);
353}
354
355static int
356linear_object_p(VALUE obj)
357{
358 if (FIXNUM_P(obj) || FLONUM_P(obj)) return TRUE;
359 if (SPECIAL_CONST_P(obj)) return FALSE;
360 switch (BUILTIN_TYPE(obj)) {
361 case T_FLOAT:
362 case T_BIGNUM:
363 return TRUE;
364 default:
365 break;
366 }
367 if (rb_obj_is_kind_of(obj, rb_cNumeric)) return TRUE;
368 if (rb_obj_is_kind_of(obj, rb_cTime)) return TRUE;
369 return FALSE;
370}
371
372static VALUE
373check_step_domain(VALUE step)
374{
375 VALUE zero = INT2FIX(0);
376 int cmp;
377 if (!rb_obj_is_kind_of(step, rb_cNumeric)) {
378 step = rb_to_int(step);
379 }
380 cmp = rb_cmpint(rb_funcallv(step, idCmp, 1, &zero), step, zero);
381 if (cmp < 0) {
382 rb_raise(rb_eArgError, "step can't be negative");
383 }
384 else if (cmp == 0) {
385 rb_raise(rb_eArgError, "step can't be 0");
386 }
387 return step;
388}
389
390static VALUE
391range_step_size(VALUE range, VALUE args, VALUE eobj)
392{
393 VALUE b = RANGE_BEG(range), e = RANGE_END(range);
394 VALUE step = INT2FIX(1);
395 if (args) {
396 step = check_step_domain(RARRAY_AREF(args, 0));
397 }
398
400 return ruby_num_interval_step_size(b, e, step, EXCL(range));
401 }
402 return Qnil;
403}
404
405/*
406 * call-seq:
407 * step(s = 1) {|element| ... } -> self
408 * step(s = 1) -> enumerator/arithmetic_sequence
409 *
410 * Iterates over the elements of range in steps of +s+. The iteration is performed
411 * by <tt>+</tt> operator:
412 *
413 * (0..6).step(2) { puts _1 } #=> 1..5
414 * # Prints: 0, 2, 4, 6
415 *
416 * # Iterate between two dates in step of 1 day (24 hours)
417 * (Time.utc(2022, 2, 24)..Time.utc(2022, 3, 1)).step(24*60*60) { puts _1 }
418 * # Prints:
419 * # 2022-02-24 00:00:00 UTC
420 * # 2022-02-25 00:00:00 UTC
421 * # 2022-02-26 00:00:00 UTC
422 * # 2022-02-27 00:00:00 UTC
423 * # 2022-02-28 00:00:00 UTC
424 * # 2022-03-01 00:00:00 UTC
425 *
426 * If <tt> + step</tt> decreases the value, iteration is still performed when
427 * step +begin+ is higher than the +end+:
428 *
429 * (0..6).step(-2) { puts _1 }
430 * # Prints nothing
431 *
432 * (6..0).step(-2) { puts _1 }
433 * # Prints: 6, 4, 2, 0
434 *
435 * (Time.utc(2022, 3, 1)..Time.utc(2022, 2, 24)).step(-24*60*60) { puts _1 }
436 * # Prints:
437 * # 2022-03-01 00:00:00 UTC
438 * # 2022-02-28 00:00:00 UTC
439 * # 2022-02-27 00:00:00 UTC
440 * # 2022-02-26 00:00:00 UTC
441 * # 2022-02-25 00:00:00 UTC
442 * # 2022-02-24 00:00:00 UTC
443 *
444 * When the block is not provided, and range boundaries and step are Numeric,
445 * the method returns Enumerator::ArithmeticSequence.
446 *
447 * (1..5).step(2) # => ((1..5).step(2))
448 * (1.0..).step(1.5) #=> ((1.0..).step(1.5))
449 * (..3r).step(1/3r) #=> ((..3/1).step((1/3)))
450 *
451 * Enumerator::ArithmeticSequence can be further used as a value object for iteration
452 * or slicing of collections (see Array#[]). There is a convenience method #% with
453 * behavior similar to +step+ to produce arithmetic sequences more expressively:
454 *
455 * # Same as (1..5).step(2)
456 * (1..5) % 2 # => ((1..5).%(2))
457 *
458 * In a generic case, when the block is not provided, Enumerator is returned:
459 *
460 * ('a'..).step('b') #=> #<Enumerator: "a"..:step("b")>
461 * ('a'..).step('b').take(3) #=> ["a", "ab", "abb"]
462 *
463 * If +s+ is not provided, it is considered +1+ for ranges with numeric +begin+:
464 *
465 * (1..5).step { p _1 }
466 * # Prints: 1, 2, 3, 4, 5
467 *
468 * For non-Numeric ranges, step absence is an error:
469 *
470 * (Time.utc(2022, 3, 1)..Time.utc(2022, 2, 24)).step { p _1 }
471 * # raises: step is required for non-numeric ranges (ArgumentError)
472 *
473 * For backward compatibility reasons, String ranges support the iteration both with
474 * string step and with integer step. In the latter case, the iteration is performed
475 * by calculating the next values with String#succ:
476 *
477 * ('a'..'e').step(2) { p _1 }
478 * # Prints: a, c, e
479 * ('a'..'e').step { p _1 }
480 * # Default step 1; prints: a, b, c, d, e
481 *
482 */
483static VALUE
484range_step(int argc, VALUE *argv, VALUE range)
485{
486 VALUE b, e, v, step;
487 int c, dir;
488
489 b = RANGE_BEG(range);
490 e = RANGE_END(range);
491 v = b;
492
493 const VALUE b_num_p = rb_obj_is_kind_of(b, rb_cNumeric);
494 const VALUE e_num_p = rb_obj_is_kind_of(e, rb_cNumeric);
495 // For backward compatibility reasons (conforming to behavior before 3.4), String/Symbol
496 // supports both old behavior ('a'..).step(1) and new behavior ('a'..).step('a')
497 // Hence the additional conversion/additional checks.
498 const VALUE str_b = rb_check_string_type(b);
499 const VALUE sym_b = SYMBOL_P(b) ? rb_sym2str(b) : Qnil;
500
501 if (rb_check_arity(argc, 0, 1))
502 step = argv[0];
503 else {
504 if (b_num_p || !NIL_P(str_b) || !NIL_P(sym_b) || (NIL_P(b) && e_num_p))
505 step = INT2FIX(1);
506 else
507 rb_raise(rb_eArgError, "step is required for non-numeric ranges");
508 }
509
510 const VALUE step_num_p = rb_obj_is_kind_of(step, rb_cNumeric);
511
512 if (step_num_p && b_num_p && rb_equal(step, INT2FIX(0))) {
513 rb_raise(rb_eArgError, "step can't be 0");
514 }
515
516 if (!rb_block_given_p()) {
517 // This code is allowed to create even beginless ArithmeticSequence, which can be useful,
518 // e.g., for array slicing:
519 // ary[(..-1) % 3]
520 if (step_num_p && ((b_num_p && (NIL_P(e) || e_num_p)) || (NIL_P(b) && e_num_p))) {
521 return rb_arith_seq_new(range, ID2SYM(rb_frame_this_func()), argc, argv,
522 range_step_size, b, e, step, EXCL(range));
523 }
524
525 // ...but generic Enumerator from beginless range is useless and probably an error.
526 if (NIL_P(b)) {
527 rb_raise(rb_eArgError, "#step for non-numeric beginless ranges is meaningless");
528 }
529
530 RETURN_SIZED_ENUMERATOR(range, argc, argv, 0);
531 }
532
533 if (NIL_P(b)) {
534 rb_raise(rb_eArgError, "#step iteration for beginless ranges is meaningless");
535 }
536
537 if (FIXNUM_P(b) && NIL_P(e) && FIXNUM_P(step)) {
538 /* perform summation of numbers in C until their reach Fixnum limit */
539 long i = FIX2LONG(b), unit = FIX2LONG(step);
540 do {
541 rb_yield(LONG2FIX(i));
542 i += unit; /* FIXABLE+FIXABLE never overflow */
543 } while (FIXABLE(i));
544 b = LONG2NUM(i);
545
546 /* then switch to Bignum API */
547 for (;; b = rb_big_plus(b, step))
548 rb_yield(b);
549 }
550 else if (FIXNUM_P(b) && FIXNUM_P(e) && FIXNUM_P(step)) {
551 /* fixnums are special: summation is performed in C for performance */
552 long end = FIX2LONG(e);
553 long i, unit = FIX2LONG(step);
554
555 if (unit < 0) {
556 if (!EXCL(range))
557 end -= 1;
558 i = FIX2LONG(b);
559 while (i > end) {
560 rb_yield(LONG2NUM(i));
561 i += unit;
562 }
563 }
564 else {
565 if (!EXCL(range))
566 end += 1;
567 i = FIX2LONG(b);
568 while (i < end) {
569 rb_yield(LONG2NUM(i));
570 i += unit;
571 }
572 }
573 }
574 else if (b_num_p && step_num_p && ruby_float_step(b, e, step, EXCL(range), TRUE)) {
575 /* done */
576 }
577 else if (!NIL_P(str_b) && FIXNUM_P(step)) {
578 // backwards compatibility behavior for String only, when no step/Integer step is passed
579 // See discussion in https://bugs.ruby-lang.org/issues/18368
580
581 VALUE iter[2] = {INT2FIX(1), step};
582
583 if (NIL_P(e)) {
584 rb_str_upto_endless_each(str_b, step_i, (VALUE)iter);
585 }
586 else {
587 rb_str_upto_each(str_b, e, EXCL(range), step_i, (VALUE)iter);
588 }
589 }
590 else if (!NIL_P(sym_b) && FIXNUM_P(step)) {
591 // same as above: backward compatibility for symbols
592
593 VALUE iter[2] = {INT2FIX(1), step};
594
595 if (NIL_P(e)) {
596 rb_str_upto_endless_each(sym_b, sym_step_i, (VALUE)iter);
597 }
598 else {
599 rb_str_upto_each(sym_b, rb_sym2str(e), EXCL(range), sym_step_i, (VALUE)iter);
600 }
601 }
602 else if (NIL_P(e)) {
603 // endless range
604 for (;; v = rb_funcall(v, id_plus, 1, step))
605 rb_yield(v);
606 }
607 else if (b_num_p && step_num_p && r_less(step, INT2FIX(0)) < 0) {
608 // iterate backwards, for consistency with ArithmeticSequence
609 if (EXCL(range)) {
610 for (; r_less(e, v) < 0; v = rb_funcall(v, id_plus, 1, step))
611 rb_yield(v);
612 }
613 else {
614 for (; (c = r_less(e, v)) <= 0; v = rb_funcall(v, id_plus, 1, step)) {
615 rb_yield(v);
616 if (!c) break;
617 }
618 }
619
620 }
621 else if ((dir = r_less(b, e)) == 0) {
622 if (!EXCL(range)) {
623 rb_yield(v);
624 }
625 }
626 else if (dir == r_less(b, rb_funcall(b, id_plus, 1, step))) {
627 // Direction of the comparison. We use it as a comparison operator in cycle:
628 // if begin < end, the cycle performs while value < end (iterating forward)
629 // if begin > end, the cycle performs while value > end (iterating backward with
630 // a negative step)
631 // One preliminary addition to check the step moves iteration in the same direction as
632 // from begin to end; otherwise, the iteration should be empty.
633 if (EXCL(range)) {
634 for (; r_less(v, e) == dir; v = rb_funcall(v, id_plus, 1, step))
635 rb_yield(v);
636 }
637 else {
638 for (; (c = r_less(v, e)) == dir || c == 0; v = rb_funcall(v, id_plus, 1, step)) {
639 rb_yield(v);
640 if (!c) break;
641 }
642 }
643 }
644 return range;
645}
646
647/*
648 * call-seq:
649 * %(n) {|element| ... } -> self
650 * %(n) -> enumerator or arithmetic_sequence
651 *
652 * Same as #step (but doesn't provide default value for +n+).
653 * The method is convenient for experssive producing of Enumerator::ArithmeticSequence.
654 *
655 * array = [0, 1, 2, 3, 4, 5, 6]
656 *
657 * # slice each second element:
658 * seq = (0..) % 2 #=> ((0..).%(2))
659 * array[seq] #=> [0, 2, 4, 6]
660 * # or just
661 * array[(0..) % 2] #=> [0, 2, 4, 6]
662 *
663 * Note that due to operator precedence in Ruby, parentheses are mandatory around range
664 * in this case:
665 *
666 * (0..7) % 2 #=> ((0..7).%(2)) -- as expected
667 * 0..7 % 2 #=> 0..1 -- parsed as 0..(7 % 2)
668 */
669static VALUE
670range_percent_step(VALUE range, VALUE step)
671{
672 return range_step(1, &step, range);
673}
674
675#if SIZEOF_DOUBLE == 8 && defined(HAVE_INT64_T)
676union int64_double {
677 int64_t i;
678 double d;
679};
680
681static VALUE
682int64_as_double_to_num(int64_t i)
683{
684 union int64_double convert;
685 if (i < 0) {
686 convert.i = -i;
687 return DBL2NUM(-convert.d);
688 }
689 else {
690 convert.i = i;
691 return DBL2NUM(convert.d);
692 }
693}
694
695static int64_t
696double_as_int64(double d)
697{
698 union int64_double convert;
699 convert.d = fabs(d);
700 return d < 0 ? -convert.i : convert.i;
701}
702#endif
703
704static int
705is_integer_p(VALUE v)
706{
707 if (rb_integer_type_p(v)) {
708 return true;
709 }
710
711 ID id_integer_p;
712 VALUE is_int;
713 CONST_ID(id_integer_p, "integer?");
714 is_int = rb_check_funcall(v, id_integer_p, 0, 0);
715 return RTEST(is_int) && !UNDEF_P(is_int);
716}
717
718static VALUE
719bsearch_integer_range(VALUE beg, VALUE end, int excl)
720{
721 VALUE satisfied = Qnil;
722 int smaller;
723
724#define BSEARCH_CHECK(expr) \
725 do { \
726 VALUE val = (expr); \
727 VALUE v = rb_yield(val); \
728 if (FIXNUM_P(v)) { \
729 if (v == INT2FIX(0)) return val; \
730 smaller = (SIGNED_VALUE)v < 0; \
731 } \
732 else if (v == Qtrue) { \
733 satisfied = val; \
734 smaller = 1; \
735 } \
736 else if (!RTEST(v)) { \
737 smaller = 0; \
738 } \
739 else if (rb_obj_is_kind_of(v, rb_cNumeric)) { \
740 int cmp = rb_cmpint(rb_funcall(v, id_cmp, 1, INT2FIX(0)), v, INT2FIX(0)); \
741 if (!cmp) return val; \
742 smaller = cmp < 0; \
743 } \
744 else { \
745 rb_raise(rb_eTypeError, "wrong argument type %"PRIsVALUE \
746 " (must be numeric, true, false or nil)", \
747 rb_obj_class(v)); \
748 } \
749 } while (0)
750
751 VALUE low = rb_to_int(beg);
752 VALUE high = rb_to_int(end);
753 VALUE mid;
754 ID id_div;
755 CONST_ID(id_div, "div");
756
757 if (!excl) high = rb_funcall(high, '+', 1, INT2FIX(1));
758 low = rb_funcall(low, '-', 1, INT2FIX(1));
759
760 /*
761 * This loop must continue while low + 1 < high.
762 * Instead of checking low + 1 < high, check low < mid, where mid = (low + high) / 2.
763 * This is to avoid the cost of calculating low + 1 on each iteration.
764 * Note that this condition replacement is valid because Integer#div always rounds
765 * towards negative infinity.
766 */
767 while (mid = rb_funcall(rb_funcall(high, '+', 1, low), id_div, 1, INT2FIX(2)),
768 rb_cmpint(rb_funcall(low, id_cmp, 1, mid), low, mid) < 0) {
769 BSEARCH_CHECK(mid);
770 if (smaller) {
771 high = mid;
772 }
773 else {
774 low = mid;
775 }
776 }
777 return satisfied;
778}
779
780/*
781 * call-seq:
782 * bsearch {|obj| block } -> value
783 *
784 * Returns an element from +self+ selected by a binary search.
785 *
786 * See {Binary Searching}[rdoc-ref:bsearch.rdoc].
787 *
788 */
789
790static VALUE
791range_bsearch(VALUE range)
792{
793 VALUE beg, end, satisfied = Qnil;
794 int smaller;
795
796 /* Implementation notes:
797 * Floats are handled by mapping them to 64 bits integers.
798 * Apart from sign issues, floats and their 64 bits integer have the
799 * same order, assuming they are represented as exponent followed
800 * by the mantissa. This is true with or without implicit bit.
801 *
802 * Finding the average of two ints needs to be careful about
803 * potential overflow (since float to long can use 64 bits).
804 *
805 * The half-open interval (low, high] indicates where the target is located.
806 * The loop continues until low and high are adjacent.
807 *
808 * -1/2 can be either 0 or -1 in C89. However, when low and high are not adjacent,
809 * the rounding direction of mid = (low + high) / 2 does not affect the result of
810 * the binary search.
811 *
812 * Note that -0.0 is mapped to the same int as 0.0 as we don't want
813 * (-1...0.0).bsearch to yield -0.0.
814 */
815
816#define BSEARCH(conv, excl) \
817 do { \
818 RETURN_ENUMERATOR(range, 0, 0); \
819 if (!(excl)) high++; \
820 low--; \
821 while (low + 1 < high) { \
822 mid = ((high < 0) == (low < 0)) ? low + ((high - low) / 2) \
823 : (low + high) / 2; \
824 BSEARCH_CHECK(conv(mid)); \
825 if (smaller) { \
826 high = mid; \
827 } \
828 else { \
829 low = mid; \
830 } \
831 } \
832 return satisfied; \
833 } while (0)
834
835#define BSEARCH_FIXNUM(beg, end, excl) \
836 do { \
837 long low = FIX2LONG(beg); \
838 long high = FIX2LONG(end); \
839 long mid; \
840 BSEARCH(INT2FIX, (excl)); \
841 } while (0)
842
843 beg = RANGE_BEG(range);
844 end = RANGE_END(range);
845
846 if (FIXNUM_P(beg) && FIXNUM_P(end)) {
847 BSEARCH_FIXNUM(beg, end, EXCL(range));
848 }
849#if SIZEOF_DOUBLE == 8 && defined(HAVE_INT64_T)
850 else if (RB_FLOAT_TYPE_P(beg) || RB_FLOAT_TYPE_P(end)) {
851 int64_t low = double_as_int64(NIL_P(beg) ? -HUGE_VAL : RFLOAT_VALUE(rb_Float(beg)));
852 int64_t high = double_as_int64(NIL_P(end) ? HUGE_VAL : RFLOAT_VALUE(rb_Float(end)));
853 int64_t mid;
854 BSEARCH(int64_as_double_to_num, EXCL(range));
855 }
856#endif
857 else if (is_integer_p(beg) && is_integer_p(end)) {
858 RETURN_ENUMERATOR(range, 0, 0);
859 return bsearch_integer_range(beg, end, EXCL(range));
860 }
861 else if (is_integer_p(beg) && NIL_P(end)) {
862 VALUE diff = LONG2FIX(1);
863 RETURN_ENUMERATOR(range, 0, 0);
864 while (1) {
865 VALUE mid = rb_funcall(beg, '+', 1, diff);
866 BSEARCH_CHECK(mid);
867 if (smaller) {
868 if (FIXNUM_P(beg) && FIXNUM_P(mid)) {
869 BSEARCH_FIXNUM(beg, mid, false);
870 }
871 else {
872 return bsearch_integer_range(beg, mid, false);
873 }
874 }
875 diff = rb_funcall(diff, '*', 1, LONG2FIX(2));
876 beg = mid;
877 }
878 }
879 else if (NIL_P(beg) && is_integer_p(end)) {
880 VALUE diff = LONG2FIX(-1);
881 RETURN_ENUMERATOR(range, 0, 0);
882 while (1) {
883 VALUE mid = rb_funcall(end, '+', 1, diff);
884 BSEARCH_CHECK(mid);
885 if (!smaller) {
886 if (FIXNUM_P(mid) && FIXNUM_P(end)) {
887 BSEARCH_FIXNUM(mid, end, false);
888 }
889 else {
890 return bsearch_integer_range(mid, end, false);
891 }
892 }
893 diff = rb_funcall(diff, '*', 1, LONG2FIX(2));
894 end = mid;
895 }
896 }
897 else {
898 rb_raise(rb_eTypeError, "can't do binary search for %s", rb_obj_classname(beg));
899 }
900 return range;
901}
902
903static int
904each_i(VALUE v, VALUE arg)
905{
906 rb_yield(v);
907 return 0;
908}
909
910static int
911sym_each_i(VALUE v, VALUE arg)
912{
913 return each_i(rb_str_intern(v), arg);
914}
915
916#define CANT_ITERATE_FROM(x) \
917 rb_raise(rb_eTypeError, "can't iterate from %s", \
918 rb_obj_classname(x))
919
920/*
921 * call-seq:
922 * size -> non_negative_integer or Infinity or nil
923 *
924 * Returns the count of elements in +self+
925 * if both begin and end values are numeric;
926 * otherwise, returns +nil+:
927 *
928 * (1..4).size # => 4
929 * (1...4).size # => 3
930 * (1..).size # => Infinity
931 * ('a'..'z').size # => nil
932 *
933 * If +self+ is not iterable, raises an exception:
934 *
935 * (0.5..2.5).size # TypeError
936 * (..1).size # TypeError
937 *
938 * Related: Range#count.
939 */
940
941static VALUE
942range_size(VALUE range)
943{
944 VALUE b = RANGE_BEG(range), e = RANGE_END(range);
945
946 if (RB_INTEGER_TYPE_P(b)) {
948 return ruby_num_interval_step_size(b, e, INT2FIX(1), EXCL(range));
949 }
950 if (NIL_P(e)) {
951 return DBL2NUM(HUGE_VAL);
952 }
953 }
954
955 if (!discrete_object_p(b)) {
956 CANT_ITERATE_FROM(b);
957 }
958
959 return Qnil;
960}
961
962static VALUE
963range_reverse_size(VALUE range)
964{
965 VALUE b = RANGE_BEG(range), e = RANGE_END(range);
966
967 if (NIL_P(e)) {
968 CANT_ITERATE_FROM(e);
969 }
970
971 if (RB_INTEGER_TYPE_P(b)) {
973 return ruby_num_interval_step_size(b, e, INT2FIX(1), EXCL(range));
974 }
975 else {
976 CANT_ITERATE_FROM(e);
977 }
978 }
979
980 if (NIL_P(b)) {
981 if (RB_INTEGER_TYPE_P(e)) {
982 return DBL2NUM(HUGE_VAL);
983 }
984 else {
985 CANT_ITERATE_FROM(e);
986 }
987 }
988
989 if (!discrete_object_p(b)) {
990 CANT_ITERATE_FROM(e);
991 }
992
993 return Qnil;
994}
995
996#undef CANT_ITERATE_FROM
997
998/*
999 * call-seq:
1000 * to_a -> array
1001 *
1002 * Returns an array containing the elements in +self+, if a finite collection;
1003 * raises an exception otherwise.
1004 *
1005 * (1..4).to_a # => [1, 2, 3, 4]
1006 * (1...4).to_a # => [1, 2, 3]
1007 * ('a'..'d').to_a # => ["a", "b", "c", "d"]
1008 *
1009 */
1010
1011static VALUE
1012range_to_a(VALUE range)
1013{
1014 if (NIL_P(RANGE_END(range))) {
1015 rb_raise(rb_eRangeError, "cannot convert endless range to an array");
1016 }
1017 return rb_call_super(0, 0);
1018}
1019
1020static VALUE
1021range_enum_size(VALUE range, VALUE args, VALUE eobj)
1022{
1023 return range_size(range);
1024}
1025
1026static VALUE
1027range_enum_reverse_size(VALUE range, VALUE args, VALUE eobj)
1028{
1029 return range_reverse_size(range);
1030}
1031
1033static void
1034range_each_bignum_endless(VALUE beg)
1035{
1036 for (;; beg = rb_big_plus(beg, INT2FIX(1))) {
1037 rb_yield(beg);
1038 }
1040}
1041
1043static void
1044range_each_fixnum_endless(VALUE beg)
1045{
1046 for (long i = FIX2LONG(beg); FIXABLE(i); i++) {
1047 rb_yield(LONG2FIX(i));
1048 }
1049
1050 range_each_bignum_endless(LONG2NUM(RUBY_FIXNUM_MAX + 1));
1052}
1053
1054static VALUE
1055range_each_fixnum_loop(VALUE beg, VALUE end, VALUE range)
1056{
1057 long lim = FIX2LONG(end) + !EXCL(range);
1058 for (long i = FIX2LONG(beg); i < lim; i++) {
1059 rb_yield(LONG2FIX(i));
1060 }
1061 return range;
1062}
1063
1064/*
1065 * call-seq:
1066 * each {|element| ... } -> self
1067 * each -> an_enumerator
1068 *
1069 * With a block given, passes each element of +self+ to the block:
1070 *
1071 * a = []
1072 * (1..4).each {|element| a.push(element) } # => 1..4
1073 * a # => [1, 2, 3, 4]
1074 *
1075 * Raises an exception unless <tt>self.first.respond_to?(:succ)</tt>.
1076 *
1077 * With no block given, returns an enumerator.
1078 *
1079 */
1080
1081static VALUE
1082range_each(VALUE range)
1083{
1084 VALUE beg, end;
1085 long i;
1086
1087 RETURN_SIZED_ENUMERATOR(range, 0, 0, range_enum_size);
1088
1089 beg = RANGE_BEG(range);
1090 end = RANGE_END(range);
1091
1092 if (FIXNUM_P(beg) && NIL_P(end)) {
1093 range_each_fixnum_endless(beg);
1094 }
1095 else if (FIXNUM_P(beg) && FIXNUM_P(end)) { /* fixnums are special */
1096 return range_each_fixnum_loop(beg, end, range);
1097 }
1098 else if (RB_INTEGER_TYPE_P(beg) && (NIL_P(end) || RB_INTEGER_TYPE_P(end))) {
1099 if (SPECIAL_CONST_P(end) || RBIGNUM_POSITIVE_P(end)) { /* end >= FIXNUM_MIN */
1100 if (!FIXNUM_P(beg)) {
1101 if (RBIGNUM_NEGATIVE_P(beg)) {
1102 do {
1103 rb_yield(beg);
1104 } while (!FIXNUM_P(beg = rb_big_plus(beg, INT2FIX(1))));
1105 if (NIL_P(end)) range_each_fixnum_endless(beg);
1106 if (FIXNUM_P(end)) return range_each_fixnum_loop(beg, end, range);
1107 }
1108 else {
1109 if (NIL_P(end)) range_each_bignum_endless(beg);
1110 if (FIXNUM_P(end)) return range;
1111 }
1112 }
1113 if (FIXNUM_P(beg)) {
1114 i = FIX2LONG(beg);
1115 do {
1116 rb_yield(LONG2FIX(i));
1117 } while (POSFIXABLE(++i));
1118 beg = LONG2NUM(i);
1119 }
1120 ASSUME(!FIXNUM_P(beg));
1121 ASSUME(!SPECIAL_CONST_P(end));
1122 }
1123 if (!FIXNUM_P(beg) && RBIGNUM_SIGN(beg) == RBIGNUM_SIGN(end)) {
1124 if (EXCL(range)) {
1125 while (rb_big_cmp(beg, end) == INT2FIX(-1)) {
1126 rb_yield(beg);
1127 beg = rb_big_plus(beg, INT2FIX(1));
1128 }
1129 }
1130 else {
1131 VALUE c;
1132 while ((c = rb_big_cmp(beg, end)) != INT2FIX(1)) {
1133 rb_yield(beg);
1134 if (c == INT2FIX(0)) break;
1135 beg = rb_big_plus(beg, INT2FIX(1));
1136 }
1137 }
1138 }
1139 }
1140 else if (SYMBOL_P(beg) && (NIL_P(end) || SYMBOL_P(end))) { /* symbols are special */
1141 beg = rb_sym2str(beg);
1142 if (NIL_P(end)) {
1143 rb_str_upto_endless_each(beg, sym_each_i, 0);
1144 }
1145 else {
1146 rb_str_upto_each(beg, rb_sym2str(end), EXCL(range), sym_each_i, 0);
1147 }
1148 }
1149 else {
1150 VALUE tmp = rb_check_string_type(beg);
1151
1152 if (!NIL_P(tmp)) {
1153 if (!NIL_P(end)) {
1154 rb_str_upto_each(tmp, end, EXCL(range), each_i, 0);
1155 }
1156 else {
1157 rb_str_upto_endless_each(tmp, each_i, 0);
1158 }
1159 }
1160 else {
1161 if (!discrete_object_p(beg)) {
1162 rb_raise(rb_eTypeError, "can't iterate from %s",
1163 rb_obj_classname(beg));
1164 }
1165 if (!NIL_P(end))
1166 range_each_func(range, each_i, 0);
1167 else
1168 for (;; beg = rb_funcallv(beg, id_succ, 0, 0))
1169 rb_yield(beg);
1170 }
1171 }
1172 return range;
1173}
1174
1176static void
1177range_reverse_each_bignum_beginless(VALUE end)
1178{
1180
1181 for (;; end = rb_big_minus(end, INT2FIX(1))) {
1182 rb_yield(end);
1183 }
1185}
1186
1187static void
1188range_reverse_each_bignum(VALUE beg, VALUE end)
1189{
1191
1192 VALUE c;
1193 while ((c = rb_big_cmp(beg, end)) != INT2FIX(1)) {
1194 rb_yield(end);
1195 if (c == INT2FIX(0)) break;
1196 end = rb_big_minus(end, INT2FIX(1));
1197 }
1198}
1199
1200static void
1201range_reverse_each_positive_bignum_section(VALUE beg, VALUE end)
1202{
1203 RUBY_ASSERT(!NIL_P(end));
1204
1205 if (FIXNUM_P(end) || RBIGNUM_NEGATIVE_P(end)) return;
1206
1207 if (NIL_P(beg) || FIXNUM_P(beg) || RBIGNUM_NEGATIVE_P(beg)) {
1208 beg = LONG2NUM(FIXNUM_MAX + 1);
1209 }
1210
1211 range_reverse_each_bignum(beg, end);
1212}
1213
1214static void
1215range_reverse_each_fixnum_section(VALUE beg, VALUE end)
1216{
1217 RUBY_ASSERT(!NIL_P(end));
1218
1219 if (!FIXNUM_P(beg)) {
1220 if (!NIL_P(beg) && RBIGNUM_POSITIVE_P(beg)) return;
1221
1222 beg = LONG2FIX(FIXNUM_MIN);
1223 }
1224
1225 if (!FIXNUM_P(end)) {
1226 if (RBIGNUM_NEGATIVE_P(end)) return;
1227
1228 end = LONG2FIX(FIXNUM_MAX);
1229 }
1230
1231 long b = FIX2LONG(beg);
1232 long e = FIX2LONG(end);
1233 for (long i = e; i >= b; --i) {
1234 rb_yield(LONG2FIX(i));
1235 }
1236}
1237
1238static void
1239range_reverse_each_negative_bignum_section(VALUE beg, VALUE end)
1240{
1241 RUBY_ASSERT(!NIL_P(end));
1242
1243 if (FIXNUM_P(end) || RBIGNUM_POSITIVE_P(end)) {
1244 end = LONG2NUM(FIXNUM_MIN - 1);
1245 }
1246
1247 if (NIL_P(beg)) {
1248 range_reverse_each_bignum_beginless(end);
1249 }
1250
1251 if (FIXNUM_P(beg) || RBIGNUM_POSITIVE_P(beg)) return;
1252
1253 range_reverse_each_bignum(beg, end);
1254}
1255
1256/*
1257 * call-seq:
1258 * reverse_each {|element| ... } -> self
1259 * reverse_each -> an_enumerator
1260 *
1261 * With a block given, passes each element of +self+ to the block in reverse order:
1262 *
1263 * a = []
1264 * (1..4).reverse_each {|element| a.push(element) } # => 1..4
1265 * a # => [4, 3, 2, 1]
1266 *
1267 * a = []
1268 * (1...4).reverse_each {|element| a.push(element) } # => 1...4
1269 * a # => [3, 2, 1]
1270 *
1271 * With no block given, returns an enumerator.
1272 *
1273 */
1274
1275static VALUE
1276range_reverse_each(VALUE range)
1277{
1278 RETURN_SIZED_ENUMERATOR(range, 0, 0, range_enum_reverse_size);
1279
1280 VALUE beg = RANGE_BEG(range);
1281 VALUE end = RANGE_END(range);
1282 int excl = EXCL(range);
1283
1284 if (NIL_P(end)) {
1285 rb_raise(rb_eTypeError, "can't iterate from %s",
1286 rb_obj_classname(end));
1287 }
1288
1289 if (FIXNUM_P(beg) && FIXNUM_P(end)) {
1290 if (excl) {
1291 if (end == LONG2FIX(FIXNUM_MIN)) return range;
1292
1293 end = rb_int_minus(end, INT2FIX(1));
1294 }
1295
1296 range_reverse_each_fixnum_section(beg, end);
1297 }
1298 else if ((NIL_P(beg) || RB_INTEGER_TYPE_P(beg)) && RB_INTEGER_TYPE_P(end)) {
1299 if (excl) {
1300 end = rb_int_minus(end, INT2FIX(1));
1301 }
1302 range_reverse_each_positive_bignum_section(beg, end);
1303 range_reverse_each_fixnum_section(beg, end);
1304 range_reverse_each_negative_bignum_section(beg, end);
1305 }
1306 else {
1307 return rb_call_super(0, NULL);
1308 }
1309
1310 return range;
1311}
1312
1313/*
1314 * call-seq:
1315 * self.begin -> object
1316 *
1317 * Returns the object that defines the beginning of +self+.
1318 *
1319 * (1..4).begin # => 1
1320 * (..2).begin # => nil
1321 *
1322 * Related: Range#first, Range#end.
1323 */
1324
1325static VALUE
1326range_begin(VALUE range)
1327{
1328 return RANGE_BEG(range);
1329}
1330
1331
1332/*
1333 * call-seq:
1334 * self.end -> object
1335 *
1336 * Returns the object that defines the end of +self+.
1337 *
1338 * (1..4).end # => 4
1339 * (1...4).end # => 4
1340 * (1..).end # => nil
1341 *
1342 * Related: Range#begin, Range#last.
1343 */
1344
1345
1346static VALUE
1347range_end(VALUE range)
1348{
1349 return RANGE_END(range);
1350}
1351
1352
1353static VALUE
1354first_i(RB_BLOCK_CALL_FUNC_ARGLIST(i, cbarg))
1355{
1356 VALUE *ary = (VALUE *)cbarg;
1357 long n = NUM2LONG(ary[0]);
1358
1359 if (n <= 0) {
1360 rb_iter_break();
1361 }
1362 rb_ary_push(ary[1], i);
1363 n--;
1364 ary[0] = LONG2NUM(n);
1365 return Qnil;
1366}
1367
1368/*
1369 * call-seq:
1370 * first -> object
1371 * first(n) -> array
1372 *
1373 * With no argument, returns the first element of +self+, if it exists:
1374 *
1375 * (1..4).first # => 1
1376 * ('a'..'d').first # => "a"
1377 *
1378 * With non-negative integer argument +n+ given,
1379 * returns the first +n+ elements in an array:
1380 *
1381 * (1..10).first(3) # => [1, 2, 3]
1382 * (1..10).first(0) # => []
1383 * (1..4).first(50) # => [1, 2, 3, 4]
1384 *
1385 * Raises an exception if there is no first element:
1386 *
1387 * (..4).first # Raises RangeError
1388 */
1389
1390static VALUE
1391range_first(int argc, VALUE *argv, VALUE range)
1392{
1393 VALUE n, ary[2];
1394
1395 if (NIL_P(RANGE_BEG(range))) {
1396 rb_raise(rb_eRangeError, "cannot get the first element of beginless range");
1397 }
1398 if (argc == 0) return RANGE_BEG(range);
1399
1400 rb_scan_args(argc, argv, "1", &n);
1401 ary[0] = n;
1402 ary[1] = rb_ary_new2(NUM2LONG(n));
1403 rb_block_call(range, idEach, 0, 0, first_i, (VALUE)ary);
1404
1405 return ary[1];
1406}
1407
1408static bool
1409range_basic_each_p(VALUE range)
1410{
1411 return rb_method_basic_definition_p(CLASS_OF(range), idEach);
1412}
1413
1414static bool
1415integer_end_optimizable(VALUE range)
1416{
1417 VALUE b = RANGE_BEG(range);
1418 if (!NIL_P(b) && !RB_INTEGER_TYPE_P(b)) return false;
1419 VALUE e = RANGE_END(range);
1420 if (!RB_INTEGER_TYPE_P(e)) return false;
1421 if (RB_LIKELY(range_basic_each_p(range))) return true;
1422 return false;
1423}
1424
1425static VALUE
1426rb_int_range_last(int argc, VALUE *argv, VALUE range)
1427{
1428 static const VALUE ONE = INT2FIX(1);
1429
1430 VALUE b, e, len_1 = Qnil, len = Qnil, nv, ary;
1431 int x;
1432 long n;
1433
1434 RUBY_ASSERT(argc > 0);
1435
1436 b = RANGE_BEG(range);
1437 e = RANGE_END(range);
1438 RUBY_ASSERT(NIL_P(b) || RB_INTEGER_TYPE_P(b), "b=%"PRIsVALUE, rb_obj_class(b));
1439 RUBY_ASSERT(RB_INTEGER_TYPE_P(e), "e=%"PRIsVALUE, rb_obj_class(e));
1440
1441 x = EXCL(range);
1442
1443 if (!NIL_P(b)) {
1444 len_1 = rb_int_minus(e, b);
1445 if (x) {
1446 e = rb_int_minus(e, ONE);
1447 len = len_1;
1448 }
1449 else {
1450 len = rb_int_plus(len_1, ONE);
1451 }
1452 }
1453 else {
1454 if (x) {
1455 e = rb_int_minus(e, ONE);
1456 }
1457 }
1458
1459 if (!NIL_P(len) && (FIXNUM_ZERO_P(len) || rb_num_negative_p(len))) {
1460 return rb_ary_new_capa(0);
1461 }
1462
1463 rb_scan_args(argc, argv, "1", &nv);
1464 n = NUM2LONG(nv);
1465 if (n < 0) {
1466 rb_raise(rb_eArgError, "negative array size");
1467 }
1468
1469 nv = LONG2NUM(n);
1470 if (!NIL_P(b) && RTEST(rb_int_gt(nv, len))) {
1471 nv = len;
1472 n = NUM2LONG(nv);
1473 }
1474
1475 ary = rb_ary_new_capa(n);
1476 b = rb_int_minus(e, nv);
1477 while (n) {
1478 b = rb_int_plus(b, ONE);
1479 rb_ary_push(ary, b);
1480 --n;
1481 }
1482
1483 return ary;
1484}
1485
1486/*
1487 * call-seq:
1488 * last -> object
1489 * last(n) -> array
1490 *
1491 * With no argument, returns the last element of +self+, if it exists:
1492 *
1493 * (1..4).last # => 4
1494 * ('a'..'d').last # => "d"
1495 *
1496 * Note that +last+ with no argument returns the end element of +self+
1497 * even if #exclude_end? is +true+:
1498 *
1499 * (1...4).last # => 4
1500 * ('a'...'d').last # => "d"
1501 *
1502 * With non-negative integer argument +n+ given,
1503 * returns the last +n+ elements in an array:
1504 *
1505 * (1..10).last(3) # => [8, 9, 10]
1506 * (1..10).last(0) # => []
1507 * (1..4).last(50) # => [1, 2, 3, 4]
1508 *
1509 * Note that +last+ with argument does not return the end element of +self+
1510 * if #exclude_end? it +true+:
1511 *
1512 * (1...4).last(3) # => [1, 2, 3]
1513 * ('a'...'d').last(3) # => ["a", "b", "c"]
1514 *
1515 * Raises an exception if there is no last element:
1516 *
1517 * (1..).last # Raises RangeError
1518 *
1519 */
1520
1521static VALUE
1522range_last(int argc, VALUE *argv, VALUE range)
1523{
1524 if (NIL_P(RANGE_END(range))) {
1525 rb_raise(rb_eRangeError, "cannot get the last element of endless range");
1526 }
1527 if (argc == 0) return RANGE_END(range);
1528 if (integer_end_optimizable(range)) {
1529 return rb_int_range_last(argc, argv, range);
1530 }
1531 return rb_ary_last(argc, argv, rb_Array(range));
1532}
1533
1534
1535/*
1536 * call-seq:
1537 * min -> object
1538 * min(n) -> array
1539 * min {|a, b| ... } -> object
1540 * min(n) {|a, b| ... } -> array
1541 *
1542 * Returns the minimum value in +self+,
1543 * using method <tt>#<=></tt> or a given block for comparison.
1544 *
1545 * With no argument and no block given,
1546 * returns the minimum-valued element of +self+.
1547 *
1548 * (1..4).min # => 1
1549 * ('a'..'d').min # => "a"
1550 * (-4..-1).min # => -4
1551 *
1552 * With non-negative integer argument +n+ given, and no block given,
1553 * returns the +n+ minimum-valued elements of +self+ in an array:
1554 *
1555 * (1..4).min(2) # => [1, 2]
1556 * ('a'..'d').min(2) # => ["a", "b"]
1557 * (-4..-1).min(2) # => [-4, -3]
1558 * (1..4).min(50) # => [1, 2, 3, 4]
1559 *
1560 * If a block is given, it is called:
1561 *
1562 * - First, with the first two element of +self+.
1563 * - Then, sequentially, with the so-far minimum value and the next element of +self+.
1564 *
1565 * To illustrate:
1566 *
1567 * (1..4).min {|a, b| p [a, b]; a <=> b } # => 1
1568 *
1569 * Output:
1570 *
1571 * [2, 1]
1572 * [3, 1]
1573 * [4, 1]
1574 *
1575 * With no argument and a block given,
1576 * returns the return value of the last call to the block:
1577 *
1578 * (1..4).min {|a, b| -(a <=> b) } # => 4
1579 *
1580 * With non-negative integer argument +n+ given, and a block given,
1581 * returns the return values of the last +n+ calls to the block in an array:
1582 *
1583 * (1..4).min(2) {|a, b| -(a <=> b) } # => [4, 3]
1584 * (1..4).min(50) {|a, b| -(a <=> b) } # => [4, 3, 2, 1]
1585 *
1586 * Returns an empty array if +n+ is zero:
1587 *
1588 * (1..4).min(0) # => []
1589 * (1..4).min(0) {|a, b| -(a <=> b) } # => []
1590 *
1591 * Returns +nil+ or an empty array if:
1592 *
1593 * - The begin value of the range is larger than the end value:
1594 *
1595 * (4..1).min # => nil
1596 * (4..1).min(2) # => []
1597 * (4..1).min {|a, b| -(a <=> b) } # => nil
1598 * (4..1).min(2) {|a, b| -(a <=> b) } # => []
1599 *
1600 * - The begin value of an exclusive range is equal to the end value:
1601 *
1602 * (1...1).min # => nil
1603 * (1...1).min(2) # => []
1604 * (1...1).min {|a, b| -(a <=> b) } # => nil
1605 * (1...1).min(2) {|a, b| -(a <=> b) } # => []
1606 *
1607 * Raises an exception if either:
1608 *
1609 * - +self+ is a beginless range: <tt>(..4)</tt>.
1610 * - A block is given and +self+ is an endless range.
1611 *
1612 * Related: Range#max, Range#minmax.
1613 */
1614
1615
1616static VALUE
1617range_min(int argc, VALUE *argv, VALUE range)
1618{
1619 if (NIL_P(RANGE_BEG(range))) {
1620 rb_raise(rb_eRangeError, "cannot get the minimum of beginless range");
1621 }
1622
1623 if (rb_block_given_p()) {
1624 if (NIL_P(RANGE_END(range))) {
1625 rb_raise(rb_eRangeError, "cannot get the minimum of endless range with custom comparison method");
1626 }
1627 return rb_call_super(argc, argv);
1628 }
1629 else if (argc != 0) {
1630 return range_first(argc, argv, range);
1631 }
1632 else {
1633 VALUE b = RANGE_BEG(range);
1634 VALUE e = RANGE_END(range);
1635 int c = NIL_P(e) ? -1 : OPTIMIZED_CMP(b, e);
1636
1637 if (c > 0 || (c == 0 && EXCL(range)))
1638 return Qnil;
1639 return b;
1640 }
1641}
1642
1643/*
1644 * call-seq:
1645 * max -> object
1646 * max(n) -> array
1647 * max {|a, b| ... } -> object
1648 * max(n) {|a, b| ... } -> array
1649 *
1650 * Returns the maximum value in +self+,
1651 * using method <tt>#<=></tt> or a given block for comparison.
1652 *
1653 * With no argument and no block given,
1654 * returns the maximum-valued element of +self+.
1655 *
1656 * (1..4).max # => 4
1657 * ('a'..'d').max # => "d"
1658 * (-4..-1).max # => -1
1659 *
1660 * With non-negative integer argument +n+ given, and no block given,
1661 * returns the +n+ maximum-valued elements of +self+ in an array:
1662 *
1663 * (1..4).max(2) # => [4, 3]
1664 * ('a'..'d').max(2) # => ["d", "c"]
1665 * (-4..-1).max(2) # => [-1, -2]
1666 * (1..4).max(50) # => [4, 3, 2, 1]
1667 *
1668 * If a block is given, it is called:
1669 *
1670 * - First, with the first two element of +self+.
1671 * - Then, sequentially, with the so-far maximum value and the next element of +self+.
1672 *
1673 * To illustrate:
1674 *
1675 * (1..4).max {|a, b| p [a, b]; a <=> b } # => 4
1676 *
1677 * Output:
1678 *
1679 * [2, 1]
1680 * [3, 2]
1681 * [4, 3]
1682 *
1683 * With no argument and a block given,
1684 * returns the return value of the last call to the block:
1685 *
1686 * (1..4).max {|a, b| -(a <=> b) } # => 1
1687 *
1688 * With non-negative integer argument +n+ given, and a block given,
1689 * returns the return values of the last +n+ calls to the block in an array:
1690 *
1691 * (1..4).max(2) {|a, b| -(a <=> b) } # => [1, 2]
1692 * (1..4).max(50) {|a, b| -(a <=> b) } # => [1, 2, 3, 4]
1693 *
1694 * Returns an empty array if +n+ is zero:
1695 *
1696 * (1..4).max(0) # => []
1697 * (1..4).max(0) {|a, b| -(a <=> b) } # => []
1698 *
1699 * Returns +nil+ or an empty array if:
1700 *
1701 * - The begin value of the range is larger than the end value:
1702 *
1703 * (4..1).max # => nil
1704 * (4..1).max(2) # => []
1705 * (4..1).max {|a, b| -(a <=> b) } # => nil
1706 * (4..1).max(2) {|a, b| -(a <=> b) } # => []
1707 *
1708 * - The begin value of an exclusive range is equal to the end value:
1709 *
1710 * (1...1).max # => nil
1711 * (1...1).max(2) # => []
1712 * (1...1).max {|a, b| -(a <=> b) } # => nil
1713 * (1...1).max(2) {|a, b| -(a <=> b) } # => []
1714 *
1715 * Raises an exception if either:
1716 *
1717 * - +self+ is a endless range: <tt>(1..)</tt>.
1718 * - A block is given and +self+ is a beginless range.
1719 *
1720 * Related: Range#min, Range#minmax.
1721 *
1722 */
1723
1724static VALUE
1725range_max(int argc, VALUE *argv, VALUE range)
1726{
1727 VALUE e = RANGE_END(range);
1728 int nm = FIXNUM_P(e) || rb_obj_is_kind_of(e, rb_cNumeric);
1729
1730 if (NIL_P(RANGE_END(range))) {
1731 rb_raise(rb_eRangeError, "cannot get the maximum of endless range");
1732 }
1733
1734 VALUE b = RANGE_BEG(range);
1735
1736 if (rb_block_given_p() || (EXCL(range) && !nm)) {
1737 if (NIL_P(b)) {
1738 rb_raise(rb_eRangeError, "cannot get the maximum of beginless range with custom comparison method");
1739 }
1740 return rb_call_super(argc, argv);
1741 }
1742 else if (argc) {
1743 VALUE ary[2];
1744 ID reverse_each;
1745 CONST_ID(reverse_each, "reverse_each");
1746 rb_scan_args(argc, argv, "1", &ary[0]);
1747 ary[1] = rb_ary_new2(NUM2LONG(ary[0]));
1748 rb_block_call(range, reverse_each, 0, 0, first_i, (VALUE)ary);
1749 return ary[1];
1750#if 0
1751 if (integer_end_optimizable(range)) {
1752 return rb_int_range_last(argc, argv, range, true);
1753 }
1754 return rb_ary_reverse(rb_ary_last(argc, argv, rb_Array(range)));
1755#endif
1756 }
1757 else {
1758 int c = NIL_P(b) ? -1 : OPTIMIZED_CMP(b, e);
1759
1760 if (c > 0)
1761 return Qnil;
1762 if (EXCL(range)) {
1763 if (!RB_INTEGER_TYPE_P(e)) {
1764 rb_raise(rb_eTypeError, "cannot exclude non Integer end value");
1765 }
1766 if (c == 0) return Qnil;
1767 if (!NIL_P(b) && !RB_INTEGER_TYPE_P(b)) {
1768 rb_raise(rb_eTypeError, "cannot exclude end value with non Integer begin value");
1769 }
1770 if (FIXNUM_P(e)) {
1771 return LONG2NUM(FIX2LONG(e) - 1);
1772 }
1773 return rb_int_minus(e,INT2FIX(1));
1774 }
1775 return e;
1776 }
1777}
1778
1779/*
1780 * call-seq:
1781 * minmax -> [object, object]
1782 * minmax {|a, b| ... } -> [object, object]
1783 *
1784 * Returns a 2-element array containing the minimum and maximum value in +self+,
1785 * either according to comparison method <tt>#<=></tt> or a given block.
1786 *
1787 * With no block given, returns the minimum and maximum values,
1788 * using <tt>#<=></tt> for comparison:
1789 *
1790 * (1..4).minmax # => [1, 4]
1791 * (1...4).minmax # => [1, 3]
1792 * ('a'..'d').minmax # => ["a", "d"]
1793 * (-4..-1).minmax # => [-4, -1]
1794 *
1795 * With a block given, the block must return an integer:
1796 *
1797 * - Negative if +a+ is smaller than +b+.
1798 * - Zero if +a+ and +b+ are equal.
1799 * - Positive if +a+ is larger than +b+.
1800 *
1801 * The block is called <tt>self.size</tt> times to compare elements;
1802 * returns a 2-element Array containing the minimum and maximum values from +self+,
1803 * per the block:
1804 *
1805 * (1..4).minmax {|a, b| -(a <=> b) } # => [4, 1]
1806 *
1807 * Returns <tt>[nil, nil]</tt> if:
1808 *
1809 * - The begin value of the range is larger than the end value:
1810 *
1811 * (4..1).minmax # => [nil, nil]
1812 * (4..1).minmax {|a, b| -(a <=> b) } # => [nil, nil]
1813 *
1814 * - The begin value of an exclusive range is equal to the end value:
1815 *
1816 * (1...1).minmax # => [nil, nil]
1817 * (1...1).minmax {|a, b| -(a <=> b) } # => [nil, nil]
1818 *
1819 * Raises an exception if +self+ is a beginless or an endless range.
1820 *
1821 * Related: Range#min, Range#max.
1822 *
1823 */
1824
1825static VALUE
1826range_minmax(VALUE range)
1827{
1828 if (rb_block_given_p()) {
1829 return rb_call_super(0, NULL);
1830 }
1831 return rb_assoc_new(
1832 rb_funcall(range, id_min, 0),
1833 rb_funcall(range, id_max, 0)
1834 );
1835}
1836
1837int
1838rb_range_values(VALUE range, VALUE *begp, VALUE *endp, int *exclp)
1839{
1840 VALUE b, e;
1841 int excl;
1842
1843 if (rb_obj_is_kind_of(range, rb_cRange)) {
1844 b = RANGE_BEG(range);
1845 e = RANGE_END(range);
1846 excl = EXCL(range);
1847 }
1848 else if (RTEST(rb_obj_is_kind_of(range, rb_cArithSeq))) {
1849 return (int)Qfalse;
1850 }
1851 else {
1852 VALUE x;
1853 b = rb_check_funcall(range, id_beg, 0, 0);
1854 if (UNDEF_P(b)) return (int)Qfalse;
1855 e = rb_check_funcall(range, id_end, 0, 0);
1856 if (UNDEF_P(e)) return (int)Qfalse;
1857 x = rb_check_funcall(range, rb_intern("exclude_end?"), 0, 0);
1858 if (UNDEF_P(x)) return (int)Qfalse;
1859 excl = RTEST(x);
1860 }
1861 *begp = b;
1862 *endp = e;
1863 *exclp = excl;
1864 return (int)Qtrue;
1865}
1866
1867/* Extract the components of a Range.
1868 *
1869 * You can use +err+ to control the behavior of out-of-range and exception.
1870 *
1871 * When +err+ is 0 or 2, if the begin offset is greater than +len+,
1872 * it is out-of-range. The +RangeError+ is raised only if +err+ is 2,
1873 * in this case. If +err+ is 0, +Qnil+ will be returned.
1874 *
1875 * When +err+ is 1, the begin and end offsets won't be adjusted even if they
1876 * are greater than +len+. It allows +rb_ary_aset+ extends arrays.
1877 *
1878 * If the begin component of the given range is negative and is too-large
1879 * abstract value, the +RangeError+ is raised only +err+ is 1 or 2.
1880 *
1881 * The case of <code>err = 0</code> is used in item accessing methods such as
1882 * +rb_ary_aref+, +rb_ary_slice_bang+, and +rb_str_aref+.
1883 *
1884 * The case of <code>err = 1</code> is used in Array's methods such as
1885 * +rb_ary_aset+ and +rb_ary_fill+.
1886 *
1887 * The case of <code>err = 2</code> is used in +rb_str_aset+.
1888 */
1889VALUE
1890rb_range_component_beg_len(VALUE b, VALUE e, int excl,
1891 long *begp, long *lenp, long len, int err)
1892{
1893 long beg, end;
1894
1895 beg = NIL_P(b) ? 0 : NUM2LONG(b);
1896 end = NIL_P(e) ? -1 : NUM2LONG(e);
1897 if (NIL_P(e)) excl = 0;
1898 if (beg < 0) {
1899 beg += len;
1900 if (beg < 0)
1901 goto out_of_range;
1902 }
1903 if (end < 0)
1904 end += len;
1905 if (!excl)
1906 end++; /* include end point */
1907 if (err == 0 || err == 2) {
1908 if (beg > len)
1909 goto out_of_range;
1910 if (end > len)
1911 end = len;
1912 }
1913 len = end - beg;
1914 if (len < 0)
1915 len = 0;
1916
1917 *begp = beg;
1918 *lenp = len;
1919 return Qtrue;
1920
1921 out_of_range:
1922 return Qnil;
1923}
1924
1925VALUE
1926rb_range_beg_len(VALUE range, long *begp, long *lenp, long len, int err)
1927{
1928 VALUE b, e;
1929 int excl;
1930
1931 if (!rb_range_values(range, &b, &e, &excl))
1932 return Qfalse;
1933
1934 VALUE res = rb_range_component_beg_len(b, e, excl, begp, lenp, len, err);
1935 if (NIL_P(res) && err) {
1936 rb_raise(rb_eRangeError, "%+"PRIsVALUE" out of range", range);
1937 }
1938
1939 return res;
1940}
1941
1942/*
1943 * call-seq:
1944 * to_s -> string
1945 *
1946 * Returns a string representation of +self+,
1947 * including <tt>begin.to_s</tt> and <tt>end.to_s</tt>:
1948 *
1949 * (1..4).to_s # => "1..4"
1950 * (1...4).to_s # => "1...4"
1951 * (1..).to_s # => "1.."
1952 * (..4).to_s # => "..4"
1953 *
1954 * Note that returns from #to_s and #inspect may differ:
1955 *
1956 * ('a'..'d').to_s # => "a..d"
1957 * ('a'..'d').inspect # => "\"a\"..\"d\""
1958 *
1959 * Related: Range#inspect.
1960 *
1961 */
1962
1963static VALUE
1964range_to_s(VALUE range)
1965{
1966 VALUE str, str2;
1967
1968 str = rb_obj_as_string(RANGE_BEG(range));
1969 str2 = rb_obj_as_string(RANGE_END(range));
1970 str = rb_str_dup(str);
1971 rb_str_cat(str, "...", EXCL(range) ? 3 : 2);
1972 rb_str_append(str, str2);
1973
1974 return str;
1975}
1976
1977static VALUE
1978inspect_range(VALUE range, VALUE dummy, int recur)
1979{
1980 VALUE str, str2 = Qundef;
1981
1982 if (recur) {
1983 return rb_str_new2(EXCL(range) ? "(... ... ...)" : "(... .. ...)");
1984 }
1985 if (!NIL_P(RANGE_BEG(range)) || NIL_P(RANGE_END(range))) {
1986 str = rb_str_dup(rb_inspect(RANGE_BEG(range)));
1987 }
1988 else {
1989 str = rb_str_new(0, 0);
1990 }
1991 rb_str_cat(str, "...", EXCL(range) ? 3 : 2);
1992 if (NIL_P(RANGE_BEG(range)) || !NIL_P(RANGE_END(range))) {
1993 str2 = rb_inspect(RANGE_END(range));
1994 }
1995 if (!UNDEF_P(str2)) rb_str_append(str, str2);
1996
1997 return str;
1998}
1999
2000/*
2001 * call-seq:
2002 * inspect -> string
2003 *
2004 * Returns a string representation of +self+,
2005 * including <tt>begin.inspect</tt> and <tt>end.inspect</tt>:
2006 *
2007 * (1..4).inspect # => "1..4"
2008 * (1...4).inspect # => "1...4"
2009 * (1..).inspect # => "1.."
2010 * (..4).inspect # => "..4"
2011 *
2012 * Note that returns from #to_s and #inspect may differ:
2013 *
2014 * ('a'..'d').to_s # => "a..d"
2015 * ('a'..'d').inspect # => "\"a\"..\"d\""
2016 *
2017 * Related: Range#to_s.
2018 *
2019 */
2020
2021
2022static VALUE
2023range_inspect(VALUE range)
2024{
2025 return rb_exec_recursive(inspect_range, range, 0);
2026}
2027
2028static VALUE range_include_internal(VALUE range, VALUE val);
2029VALUE rb_str_include_range_p(VALUE beg, VALUE end, VALUE val, VALUE exclusive);
2030
2031/*
2032 * call-seq:
2033 * self === object -> true or false
2034 *
2035 * Returns +true+ if +object+ is between <tt>self.begin</tt> and <tt>self.end</tt>.
2036 * +false+ otherwise:
2037 *
2038 * (1..4) === 2 # => true
2039 * (1..4) === 5 # => false
2040 * (1..4) === 'a' # => false
2041 * (1..4) === 4 # => true
2042 * (1...4) === 4 # => false
2043 * ('a'..'d') === 'c' # => true
2044 * ('a'..'d') === 'e' # => false
2045 *
2046 * A case statement uses method <tt>===</tt>, and so:
2047 *
2048 * case 79
2049 * when (1..50)
2050 * "low"
2051 * when (51..75)
2052 * "medium"
2053 * when (76..100)
2054 * "high"
2055 * end # => "high"
2056 *
2057 * case "2.6.5"
2058 * when ..."2.4"
2059 * "EOL"
2060 * when "2.4"..."2.5"
2061 * "maintenance"
2062 * when "2.5"..."3.0"
2063 * "stable"
2064 * when "3.1"..
2065 * "upcoming"
2066 * end # => "stable"
2067 *
2068 */
2069
2070static VALUE
2071range_eqq(VALUE range, VALUE val)
2072{
2073 return r_cover_p(range, RANGE_BEG(range), RANGE_END(range), val);
2074}
2075
2076
2077/*
2078 * call-seq:
2079 * include?(object) -> true or false
2080 *
2081 * Returns +true+ if +object+ is an element of +self+, +false+ otherwise:
2082 *
2083 * (1..4).include?(2) # => true
2084 * (1..4).include?(5) # => false
2085 * (1..4).include?(4) # => true
2086 * (1...4).include?(4) # => false
2087 * ('a'..'d').include?('b') # => true
2088 * ('a'..'d').include?('e') # => false
2089 * ('a'..'d').include?('B') # => false
2090 * ('a'..'d').include?('d') # => true
2091 * ('a'...'d').include?('d') # => false
2092 *
2093 * If begin and end are numeric, #include? behaves like #cover?
2094 *
2095 * (1..3).include?(1.5) # => true
2096 * (1..3).cover?(1.5) # => true
2097 *
2098 * But when not numeric, the two methods may differ:
2099 *
2100 * ('a'..'d').include?('cc') # => false
2101 * ('a'..'d').cover?('cc') # => true
2102 *
2103 * Related: Range#cover?.
2104 */
2105
2106static VALUE
2107range_include(VALUE range, VALUE val)
2108{
2109 VALUE ret = range_include_internal(range, val);
2110 if (!UNDEF_P(ret)) return ret;
2111 return rb_call_super(1, &val);
2112}
2113
2114static inline bool
2115range_integer_edge_p(VALUE beg, VALUE end)
2116{
2117 return (!NIL_P(rb_check_to_integer(beg, "to_int")) ||
2118 !NIL_P(rb_check_to_integer(end, "to_int")));
2119}
2120
2121static inline bool
2122range_string_range_p(VALUE beg, VALUE end)
2123{
2124 return RB_TYPE_P(beg, T_STRING) && RB_TYPE_P(end, T_STRING);
2125}
2126
2127static inline VALUE
2128range_include_fallback(VALUE beg, VALUE end, VALUE val)
2129{
2130 if (NIL_P(beg) && NIL_P(end)) {
2131 if (linear_object_p(val)) return Qtrue;
2132 }
2133
2134 if (NIL_P(beg) || NIL_P(end)) {
2135 rb_raise(rb_eTypeError, "cannot determine inclusion in beginless/endless ranges");
2136 }
2137
2138 return Qundef;
2139}
2140
2141static VALUE
2142range_include_internal(VALUE range, VALUE val)
2143{
2144 VALUE beg = RANGE_BEG(range);
2145 VALUE end = RANGE_END(range);
2146 int nv = FIXNUM_P(beg) || FIXNUM_P(end) ||
2147 linear_object_p(beg) || linear_object_p(end);
2148
2149 if (nv || range_integer_edge_p(beg, end)) {
2150 return r_cover_p(range, beg, end, val);
2151 }
2152 else if (range_string_range_p(beg, end)) {
2153 return rb_str_include_range_p(beg, end, val, RANGE_EXCL(range));
2154 }
2155
2156 return range_include_fallback(beg, end, val);
2157}
2158
2159static int r_cover_range_p(VALUE range, VALUE beg, VALUE end, VALUE val);
2160
2161/*
2162 * call-seq:
2163 * cover?(object) -> true or false
2164 * cover?(range) -> true or false
2165 *
2166 * Returns +true+ if the given argument is within +self+, +false+ otherwise.
2167 *
2168 * With non-range argument +object+, evaluates with <tt><=</tt> and <tt><</tt>.
2169 *
2170 * For range +self+ with included end value (<tt>#exclude_end? == false</tt>),
2171 * evaluates thus:
2172 *
2173 * self.begin <= object <= self.end
2174 *
2175 * Examples:
2176 *
2177 * r = (1..4)
2178 * r.cover?(1) # => true
2179 * r.cover?(4) # => true
2180 * r.cover?(0) # => false
2181 * r.cover?(5) # => false
2182 * r.cover?('foo') # => false
2183 *
2184 * r = ('a'..'d')
2185 * r.cover?('a') # => true
2186 * r.cover?('d') # => true
2187 * r.cover?(' ') # => false
2188 * r.cover?('e') # => false
2189 * r.cover?(0) # => false
2190 *
2191 * For range +r+ with excluded end value (<tt>#exclude_end? == true</tt>),
2192 * evaluates thus:
2193 *
2194 * r.begin <= object < r.end
2195 *
2196 * Examples:
2197 *
2198 * r = (1...4)
2199 * r.cover?(1) # => true
2200 * r.cover?(3) # => true
2201 * r.cover?(0) # => false
2202 * r.cover?(4) # => false
2203 * r.cover?('foo') # => false
2204 *
2205 * r = ('a'...'d')
2206 * r.cover?('a') # => true
2207 * r.cover?('c') # => true
2208 * r.cover?(' ') # => false
2209 * r.cover?('d') # => false
2210 * r.cover?(0) # => false
2211 *
2212 * With range argument +range+, compares the first and last
2213 * elements of +self+ and +range+:
2214 *
2215 * r = (1..4)
2216 * r.cover?(1..4) # => true
2217 * r.cover?(0..4) # => false
2218 * r.cover?(1..5) # => false
2219 * r.cover?('a'..'d') # => false
2220 *
2221 * r = (1...4)
2222 * r.cover?(1..3) # => true
2223 * r.cover?(1..4) # => false
2224 *
2225 * If begin and end are numeric, #cover? behaves like #include?
2226 *
2227 * (1..3).cover?(1.5) # => true
2228 * (1..3).include?(1.5) # => true
2229 *
2230 * But when not numeric, the two methods may differ:
2231 *
2232 * ('a'..'d').cover?('cc') # => true
2233 * ('a'..'d').include?('cc') # => false
2234 *
2235 * Returns +false+ if either:
2236 *
2237 * - The begin value of +self+ is larger than its end value.
2238 * - An internal call to <tt>#<=></tt> returns +nil+;
2239 * that is, the operands are not comparable.
2240 *
2241 * Beginless ranges cover all values of the same type before the end,
2242 * excluding the end for exclusive ranges. Beginless ranges cover
2243 * ranges that end before the end of the beginless range, or at the
2244 * end of the beginless range for inclusive ranges.
2245 *
2246 * (..2).cover?(1) # => true
2247 * (..2).cover?(2) # => true
2248 * (..2).cover?(3) # => false
2249 * (...2).cover?(2) # => false
2250 * (..2).cover?("2") # => false
2251 * (..2).cover?(..2) # => true
2252 * (..2).cover?(...2) # => true
2253 * (..2).cover?(.."2") # => false
2254 * (...2).cover?(..2) # => false
2255 *
2256 * Endless ranges cover all values of the same type after the
2257 * beginning. Endless exclusive ranges do not cover endless
2258 * inclusive ranges.
2259 *
2260 * (2..).cover?(1) # => false
2261 * (2..).cover?(3) # => true
2262 * (2...).cover?(3) # => true
2263 * (2..).cover?(2) # => true
2264 * (2..).cover?("2") # => false
2265 * (2..).cover?(2..) # => true
2266 * (2..).cover?(2...) # => true
2267 * (2..).cover?("2"..) # => false
2268 * (2...).cover?(2..) # => false
2269 * (2...).cover?(3...) # => true
2270 * (2...).cover?(3..) # => false
2271 * (3..).cover?(2..) # => false
2272 *
2273 * Ranges that are both beginless and endless cover all values and
2274 * ranges, and return true for all arguments, with the exception that
2275 * beginless and endless exclusive ranges do not cover endless
2276 * inclusive ranges.
2277 *
2278 * (nil...).cover?(Object.new) # => true
2279 * (nil...).cover?(nil...) # => true
2280 * (nil..).cover?(nil...) # => true
2281 * (nil...).cover?(nil..) # => false
2282 * (nil...).cover?(1..) # => false
2283 *
2284 * Related: Range#include?.
2285 *
2286 */
2287
2288static VALUE
2289range_cover(VALUE range, VALUE val)
2290{
2291 VALUE beg, end;
2292
2293 beg = RANGE_BEG(range);
2294 end = RANGE_END(range);
2295
2296 if (rb_obj_is_kind_of(val, rb_cRange)) {
2297 return RBOOL(r_cover_range_p(range, beg, end, val));
2298 }
2299 return r_cover_p(range, beg, end, val);
2300}
2301
2302static VALUE
2303r_call_max(VALUE r)
2304{
2305 return rb_funcallv(r, rb_intern("max"), 0, 0);
2306}
2307
2308static int
2309r_cover_range_p(VALUE range, VALUE beg, VALUE end, VALUE val)
2310{
2311 VALUE val_beg, val_end, val_max;
2312 int cmp_end;
2313
2314 val_beg = RANGE_BEG(val);
2315 val_end = RANGE_END(val);
2316
2317 if (!NIL_P(end) && NIL_P(val_end)) return FALSE;
2318 if (!NIL_P(beg) && NIL_P(val_beg)) return FALSE;
2319 if (!NIL_P(val_beg) && !NIL_P(val_end) && r_less(val_beg, val_end) > (EXCL(val) ? -1 : 0)) return FALSE;
2320 if (!NIL_P(val_beg) && !r_cover_p(range, beg, end, val_beg)) return FALSE;
2321
2322
2323 if (!NIL_P(val_end) && !NIL_P(end)) {
2324 VALUE r_cmp_end = rb_funcall(end, id_cmp, 1, val_end);
2325 if (NIL_P(r_cmp_end)) return FALSE;
2326 cmp_end = rb_cmpint(r_cmp_end, end, val_end);
2327 }
2328 else {
2329 cmp_end = r_less(end, val_end);
2330 }
2331
2332
2333 if (EXCL(range) == EXCL(val)) {
2334 return cmp_end >= 0;
2335 }
2336 else if (EXCL(range)) {
2337 return cmp_end > 0;
2338 }
2339 else if (cmp_end >= 0) {
2340 return TRUE;
2341 }
2342
2343 val_max = rb_rescue2(r_call_max, val, 0, Qnil, rb_eTypeError, (VALUE)0);
2344 if (NIL_P(val_max)) return FALSE;
2345
2346 return r_less(end, val_max) >= 0;
2347}
2348
2349static VALUE
2350r_cover_p(VALUE range, VALUE beg, VALUE end, VALUE val)
2351{
2352 if (NIL_P(beg) || r_less(beg, val) <= 0) {
2353 int excl = EXCL(range);
2354 if (NIL_P(end) || r_less(val, end) <= -excl)
2355 return Qtrue;
2356 }
2357 return Qfalse;
2358}
2359
2360static VALUE
2361range_dumper(VALUE range)
2362{
2363 VALUE v = rb_obj_alloc(rb_cObject);
2364
2365 rb_ivar_set(v, id_excl, RANGE_EXCL(range));
2366 rb_ivar_set(v, id_beg, RANGE_BEG(range));
2367 rb_ivar_set(v, id_end, RANGE_END(range));
2368 return v;
2369}
2370
2371static VALUE
2372range_loader(VALUE range, VALUE obj)
2373{
2374 VALUE beg, end, excl;
2375
2376 if (!RB_TYPE_P(obj, T_OBJECT) || RBASIC(obj)->klass != rb_cObject) {
2377 rb_raise(rb_eTypeError, "not a dumped range object");
2378 }
2379
2380 range_modify(range);
2381 beg = rb_ivar_get(obj, id_beg);
2382 end = rb_ivar_get(obj, id_end);
2383 excl = rb_ivar_get(obj, id_excl);
2384 if (!NIL_P(excl)) {
2385 range_init(range, beg, end, RBOOL(RTEST(excl)));
2386 }
2387 return range;
2388}
2389
2390static VALUE
2391range_alloc(VALUE klass)
2392{
2393 /* rb_struct_alloc_noinit itself should not be used because
2394 * rb_marshal_define_compat uses equality of allocation function */
2395 return rb_struct_alloc_noinit(klass);
2396}
2397
2398/*
2399 * call-seq:
2400 * count -> integer
2401 * count(object) -> integer
2402 * count {|element| ... } -> integer
2403 *
2404 * Returns the count of elements, based on an argument or block criterion, if given.
2405 *
2406 * With no argument and no block given, returns the number of elements:
2407 *
2408 * (1..4).count # => 4
2409 * (1...4).count # => 3
2410 * ('a'..'d').count # => 4
2411 * ('a'...'d').count # => 3
2412 * (1..).count # => Infinity
2413 * (..4).count # => Infinity
2414 *
2415 * With argument +object+, returns the number of +object+ found in +self+,
2416 * which will usually be zero or one:
2417 *
2418 * (1..4).count(2) # => 1
2419 * (1..4).count(5) # => 0
2420 * (1..4).count('a') # => 0
2421 *
2422 * With a block given, calls the block with each element;
2423 * returns the number of elements for which the block returns a truthy value:
2424 *
2425 * (1..4).count {|element| element < 3 } # => 2
2426 *
2427 * Related: Range#size.
2428 */
2429static VALUE
2430range_count(int argc, VALUE *argv, VALUE range)
2431{
2432 if (argc != 0) {
2433 /* It is odd for instance (1...).count(0) to return Infinity. Just let
2434 * it loop. */
2435 return rb_call_super(argc, argv);
2436 }
2437 else if (rb_block_given_p()) {
2438 /* Likewise it is odd for instance (1...).count {|x| x == 0 } to return
2439 * Infinity. Just let it loop. */
2440 return rb_call_super(argc, argv);
2441 }
2442
2443 VALUE beg = RANGE_BEG(range), end = RANGE_END(range);
2444
2445 if (NIL_P(beg) || NIL_P(end)) {
2446 /* We are confident that the answer is Infinity. */
2447 return DBL2NUM(HUGE_VAL);
2448 }
2449
2450 if (is_integer_p(beg)) {
2451 VALUE size = range_size(range);
2452 if (!NIL_P(size)) {
2453 return size;
2454 }
2455 }
2456
2457 return rb_call_super(argc, argv);
2458}
2459
2460static bool
2461empty_region_p(VALUE beg, VALUE end, int excl)
2462{
2463 if (NIL_P(beg)) return false;
2464 if (NIL_P(end)) return false;
2465 int less = r_less(beg, end);
2466 /* empty range */
2467 if (less > 0) return true;
2468 if (excl && less == 0) return true;
2469 return false;
2470}
2471
2472/*
2473 * call-seq:
2474 * overlap?(range) -> true or false
2475 *
2476 * Returns +true+ if +range+ overlaps with +self+, +false+ otherwise:
2477 *
2478 * (0..2).overlap?(1..3) #=> true
2479 * (0..2).overlap?(3..4) #=> false
2480 * (0..).overlap?(..0) #=> true
2481 *
2482 * With non-range argument, raises TypeError.
2483 *
2484 * (1..3).overlap?(1) # TypeError
2485 *
2486 * Returns +false+ if an internal call to <tt>#<=></tt> returns +nil+;
2487 * that is, the operands are not comparable.
2488 *
2489 * (1..3).overlap?('a'..'d') # => false
2490 *
2491 * Returns +false+ if +self+ or +range+ is empty. "Empty range" means
2492 * that its begin value is larger than, or equal for an exclusive
2493 * range, its end value.
2494 *
2495 * (4..1).overlap?(2..3) # => false
2496 * (4..1).overlap?(..3) # => false
2497 * (4..1).overlap?(2..) # => false
2498 * (2...2).overlap?(1..2) # => false
2499 *
2500 * (1..4).overlap?(3..2) # => false
2501 * (..4).overlap?(3..2) # => false
2502 * (1..).overlap?(3..2) # => false
2503 * (1..2).overlap?(2...2) # => false
2504 *
2505 * Returns +false+ if the begin value one of +self+ and +range+ is
2506 * larger than, or equal if the other is an exclusive range, the end
2507 * value of the other:
2508 *
2509 * (4..5).overlap?(2..3) # => false
2510 * (4..5).overlap?(2...4) # => false
2511 *
2512 * (1..2).overlap?(3..4) # => false
2513 * (1...3).overlap?(3..4) # => false
2514 *
2515 * Returns +false+ if the end value one of +self+ and +range+ is
2516 * larger than, or equal for an exclusive range, the end value of the
2517 * other:
2518 *
2519 * (4..5).overlap?(2..3) # => false
2520 * (4..5).overlap?(2...4) # => false
2521 *
2522 * (1..2).overlap?(3..4) # => false
2523 * (1...3).overlap?(3..4) # => false
2524 *
2525 * Note that the method wouldn't make any assumptions about the beginless
2526 * range being actually empty, even if its upper bound is the minimum
2527 * possible value of its type, so all this would return +true+:
2528 *
2529 * (...-Float::INFINITY).overlap?(...-Float::INFINITY) # => true
2530 * (..."").overlap?(..."") # => true
2531 * (...[]).overlap?(...[]) # => true
2532 *
2533 * Even if those ranges are effectively empty (no number can be smaller than
2534 * <tt>-Float::INFINITY</tt>), they are still considered overlapping
2535 * with themselves.
2536 *
2537 * Related: Range#cover?.
2538 */
2539
2540static VALUE
2541range_overlap(VALUE range, VALUE other)
2542{
2543 if (!rb_obj_is_kind_of(other, rb_cRange)) {
2544 rb_raise(rb_eTypeError, "wrong argument type %"PRIsVALUE" (expected Range)",
2545 rb_class_name(rb_obj_class(other)));
2546 }
2547
2548 VALUE self_beg = RANGE_BEG(range);
2549 VALUE self_end = RANGE_END(range);
2550 int self_excl = EXCL(range);
2551 VALUE other_beg = RANGE_BEG(other);
2552 VALUE other_end = RANGE_END(other);
2553 int other_excl = EXCL(other);
2554
2555 if (empty_region_p(self_beg, other_end, other_excl)) return Qfalse;
2556 if (empty_region_p(other_beg, self_end, self_excl)) return Qfalse;
2557
2558 if (!NIL_P(self_beg) && !NIL_P(other_beg)) {
2559 VALUE cmp = rb_funcall(self_beg, id_cmp, 1, other_beg);
2560 if (NIL_P(cmp)) return Qfalse;
2561 /* if both begin values are equal, no more comparisons needed */
2562 if (rb_cmpint(cmp, self_beg, other_beg) == 0) return Qtrue;
2563 }
2564 else if (NIL_P(self_beg) && !NIL_P(self_end) && NIL_P(other_beg) && !NIL_P(other_end)) {
2565 VALUE cmp = rb_funcall(self_end, id_cmp, 1, other_end);
2566 return RBOOL(!NIL_P(cmp));
2567 }
2568
2569 if (empty_region_p(self_beg, self_end, self_excl)) return Qfalse;
2570 if (empty_region_p(other_beg, other_end, other_excl)) return Qfalse;
2571
2572 return Qtrue;
2573}
2574
2575/* A \Range object represents a collection of values
2576 * that are between given begin and end values.
2577 *
2578 * You can create an \Range object explicitly with:
2579 *
2580 * - A {range literal}[rdoc-ref:syntax/literals.rdoc@Range+Literals]:
2581 *
2582 * # Ranges that use '..' to include the given end value.
2583 * (1..4).to_a # => [1, 2, 3, 4]
2584 * ('a'..'d').to_a # => ["a", "b", "c", "d"]
2585 * # Ranges that use '...' to exclude the given end value.
2586 * (1...4).to_a # => [1, 2, 3]
2587 * ('a'...'d').to_a # => ["a", "b", "c"]
2588 *
2589 * - Method Range.new:
2590 *
2591 * # Ranges that by default include the given end value.
2592 * Range.new(1, 4).to_a # => [1, 2, 3, 4]
2593 * Range.new('a', 'd').to_a # => ["a", "b", "c", "d"]
2594 * # Ranges that use third argument +exclude_end+ to exclude the given end value.
2595 * Range.new(1, 4, true).to_a # => [1, 2, 3]
2596 * Range.new('a', 'd', true).to_a # => ["a", "b", "c"]
2597 *
2598 * == Beginless Ranges
2599 *
2600 * A _beginless_ _range_ has a definite end value, but a +nil+ begin value.
2601 * Such a range includes all values up to the end value.
2602 *
2603 * r = (..4) # => nil..4
2604 * r.begin # => nil
2605 * r.include?(-50) # => true
2606 * r.include?(4) # => true
2607 *
2608 * r = (...4) # => nil...4
2609 * r.include?(4) # => false
2610 *
2611 * Range.new(nil, 4) # => nil..4
2612 * Range.new(nil, 4, true) # => nil...4
2613 *
2614 * A beginless range may be used to slice an array:
2615 *
2616 * a = [1, 2, 3, 4]
2617 * # Include the third array element in the slice
2618 * r = (..2) # => nil..2
2619 * a[r] # => [1, 2, 3]
2620 * # Exclude the third array element from the slice
2621 * r = (...2) # => nil...2
2622 * a[r] # => [1, 2]
2623 *
2624 * Method +each+ for a beginless range raises an exception.
2625 *
2626 * == Endless Ranges
2627 *
2628 * An _endless_ _range_ has a definite begin value, but a +nil+ end value.
2629 * Such a range includes all values from the begin value.
2630 *
2631 * r = (1..) # => 1..
2632 * r.end # => nil
2633 * r.include?(50) # => true
2634 *
2635 * Range.new(1, nil) # => 1..
2636 *
2637 * The literal for an endless range may be written with either two dots
2638 * or three.
2639 * The range has the same elements, either way.
2640 * But note that the two are not equal:
2641 *
2642 * r0 = (1..) # => 1..
2643 * r1 = (1...) # => 1...
2644 * r0.begin == r1.begin # => true
2645 * r0.end == r1.end # => true
2646 * r0 == r1 # => false
2647 *
2648 * An endless range may be used to slice an array:
2649 *
2650 * a = [1, 2, 3, 4]
2651 * r = (2..) # => 2..
2652 * a[r] # => [3, 4]
2653 *
2654 * Method +each+ for an endless range calls the given block indefinitely:
2655 *
2656 * a = []
2657 * r = (1..)
2658 * r.each do |i|
2659 * a.push(i) if i.even?
2660 * break if i > 10
2661 * end
2662 * a # => [2, 4, 6, 8, 10]
2663 *
2664 * A range can be both beginless and endless. For literal beginless, endless
2665 * ranges, at least the beginning or end of the range must be given as an
2666 * explicit nil value. It is recommended to use an explicit nil beginning and
2667 * end, since that is what Ruby uses for Range#inspect:
2668 *
2669 * (nil..) # => (nil..nil)
2670 * (..nil) # => (nil..nil)
2671 * (nil..nil) # => (nil..nil)
2672 *
2673 * == Ranges and Other Classes
2674 *
2675 * An object may be put into a range if its class implements
2676 * instance method <tt>#<=></tt>.
2677 * Ruby core classes that do so include Array, Complex, File::Stat,
2678 * Float, Integer, Kernel, Module, Numeric, Rational, String, Symbol, and Time.
2679 *
2680 * Example:
2681 *
2682 * t0 = Time.now # => 2021-09-19 09:22:48.4854986 -0500
2683 * t1 = Time.now # => 2021-09-19 09:22:56.0365079 -0500
2684 * t2 = Time.now # => 2021-09-19 09:23:08.5263283 -0500
2685 * (t0..t2).include?(t1) # => true
2686 * (t0..t1).include?(t2) # => false
2687 *
2688 * A range can be iterated over only if its elements
2689 * implement instance method +succ+.
2690 * Ruby core classes that do so include Integer, String, and Symbol
2691 * (but not the other classes mentioned above).
2692 *
2693 * Iterator methods include:
2694 *
2695 * - In \Range itself: #each, #step, and #%
2696 * - Included from module Enumerable: #each_entry, #each_with_index,
2697 * #each_with_object, #each_slice, #each_cons, and #reverse_each.
2698 *
2699 * Example:
2700 *
2701 * a = []
2702 * (1..4).each {|i| a.push(i) }
2703 * a # => [1, 2, 3, 4]
2704 *
2705 * == Ranges and User-Defined Classes
2706 *
2707 * A user-defined class that is to be used in a range
2708 * must implement instance method <tt>#<=></tt>;
2709 * see Integer#<=>.
2710 * To make iteration available, it must also implement
2711 * instance method +succ+; see Integer#succ.
2712 *
2713 * The class below implements both <tt>#<=></tt> and +succ+,
2714 * and so can be used both to construct ranges and to iterate over them.
2715 * Note that the Comparable module is included
2716 * so the <tt>==</tt> method is defined in terms of <tt>#<=></tt>.
2717 *
2718 * # Represent a string of 'X' characters.
2719 * class Xs
2720 * include Comparable
2721 * attr_accessor :length
2722 * def initialize(n)
2723 * @length = n
2724 * end
2725 * def succ
2726 * Xs.new(@length + 1)
2727 * end
2728 * def <=>(other)
2729 * @length <=> other.length
2730 * end
2731 * def to_s
2732 * sprintf "%2d #{inspect}", @length
2733 * end
2734 * def inspect
2735 * 'X' * @length
2736 * end
2737 * end
2738 *
2739 * r = Xs.new(3)..Xs.new(6) #=> XXX..XXXXXX
2740 * r.to_a #=> [XXX, XXXX, XXXXX, XXXXXX]
2741 * r.include?(Xs.new(5)) #=> true
2742 * r.include?(Xs.new(7)) #=> false
2743 *
2744 * == What's Here
2745 *
2746 * First, what's elsewhere. Class \Range:
2747 *
2748 * - Inherits from {class Object}[rdoc-ref:Object@What-27s+Here].
2749 * - Includes {module Enumerable}[rdoc-ref:Enumerable@What-27s+Here],
2750 * which provides dozens of additional methods.
2751 *
2752 * Here, class \Range provides methods that are useful for:
2753 *
2754 * - {Creating a Range}[rdoc-ref:Range@Methods+for+Creating+a+Range]
2755 * - {Querying}[rdoc-ref:Range@Methods+for+Querying]
2756 * - {Comparing}[rdoc-ref:Range@Methods+for+Comparing]
2757 * - {Iterating}[rdoc-ref:Range@Methods+for+Iterating]
2758 * - {Converting}[rdoc-ref:Range@Methods+for+Converting]
2759 * - {Methods for Working with JSON}[rdoc-ref:Range@Methods+for+Working+with+JSON]
2760 *
2761 * === Methods for Creating a \Range
2762 *
2763 * - ::new: Returns a new range.
2764 *
2765 * === Methods for Querying
2766 *
2767 * - #begin: Returns the begin value given for +self+.
2768 * - #bsearch: Returns an element from +self+ selected by a binary search.
2769 * - #count: Returns a count of elements in +self+.
2770 * - #end: Returns the end value given for +self+.
2771 * - #exclude_end?: Returns whether the end object is excluded.
2772 * - #first: Returns the first elements of +self+.
2773 * - #hash: Returns the integer hash code.
2774 * - #last: Returns the last elements of +self+.
2775 * - #max: Returns the maximum values in +self+.
2776 * - #min: Returns the minimum values in +self+.
2777 * - #minmax: Returns the minimum and maximum values in +self+.
2778 * - #size: Returns the count of elements in +self+.
2779 *
2780 * === Methods for Comparing
2781 *
2782 * - #==: Returns whether a given object is equal to +self+ (uses #==).
2783 * - #===: Returns whether the given object is between the begin and end values.
2784 * - #cover?: Returns whether a given object is within +self+.
2785 * - #eql?: Returns whether a given object is equal to +self+ (uses #eql?).
2786 * - #include? (aliased as #member?): Returns whether a given object
2787 * is an element of +self+.
2788 *
2789 * === Methods for Iterating
2790 *
2791 * - #%: Requires argument +n+; calls the block with each +n+-th element of +self+.
2792 * - #each: Calls the block with each element of +self+.
2793 * - #step: Takes optional argument +n+ (defaults to 1);
2794 * calls the block with each +n+-th element of +self+.
2795 *
2796 * === Methods for Converting
2797 *
2798 * - #inspect: Returns a string representation of +self+ (uses #inspect).
2799 * - #to_a (aliased as #entries): Returns elements of +self+ in an array.
2800 * - #to_s: Returns a string representation of +self+ (uses #to_s).
2801 *
2802 * === Methods for Working with \JSON
2803 *
2804 * - ::json_create: Returns a new \Range object constructed from the given object.
2805 * - #as_json: Returns a 2-element hash representing +self+.
2806 * - #to_json: Returns a \JSON string representing +self+.
2807 *
2808 * To make these methods available:
2809 *
2810 * require 'json/add/range'
2811 *
2812 */
2813
2814void
2815Init_Range(void)
2816{
2817 id_beg = rb_intern_const("begin");
2818 id_end = rb_intern_const("end");
2819 id_excl = rb_intern_const("excl");
2820
2822 "Range", rb_cObject, range_alloc,
2823 "begin", "end", "excl", NULL);
2824
2826 rb_marshal_define_compat(rb_cRange, rb_cObject, range_dumper, range_loader);
2827 rb_define_method(rb_cRange, "initialize", range_initialize, -1);
2828 rb_define_method(rb_cRange, "initialize_copy", range_initialize_copy, 1);
2829 rb_define_method(rb_cRange, "==", range_eq, 1);
2830 rb_define_method(rb_cRange, "===", range_eqq, 1);
2831 rb_define_method(rb_cRange, "eql?", range_eql, 1);
2832 rb_define_method(rb_cRange, "hash", range_hash, 0);
2833 rb_define_method(rb_cRange, "each", range_each, 0);
2834 rb_define_method(rb_cRange, "step", range_step, -1);
2835 rb_define_method(rb_cRange, "%", range_percent_step, 1);
2836 rb_define_method(rb_cRange, "reverse_each", range_reverse_each, 0);
2837 rb_define_method(rb_cRange, "bsearch", range_bsearch, 0);
2838 rb_define_method(rb_cRange, "begin", range_begin, 0);
2839 rb_define_method(rb_cRange, "end", range_end, 0);
2840 rb_define_method(rb_cRange, "first", range_first, -1);
2841 rb_define_method(rb_cRange, "last", range_last, -1);
2842 rb_define_method(rb_cRange, "min", range_min, -1);
2843 rb_define_method(rb_cRange, "max", range_max, -1);
2844 rb_define_method(rb_cRange, "minmax", range_minmax, 0);
2845 rb_define_method(rb_cRange, "size", range_size, 0);
2846 rb_define_method(rb_cRange, "to_a", range_to_a, 0);
2847 rb_define_method(rb_cRange, "entries", range_to_a, 0);
2848 rb_define_method(rb_cRange, "to_s", range_to_s, 0);
2849 rb_define_method(rb_cRange, "inspect", range_inspect, 0);
2850
2851 rb_define_method(rb_cRange, "exclude_end?", range_exclude_end_p, 0);
2852
2853 rb_define_method(rb_cRange, "member?", range_include, 1);
2854 rb_define_method(rb_cRange, "include?", range_include, 1);
2855 rb_define_method(rb_cRange, "cover?", range_cover, 1);
2856 rb_define_method(rb_cRange, "count", range_count, -1);
2857 rb_define_method(rb_cRange, "overlap?", range_overlap, 1);
2858}
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
Definition assert.h:219
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
Definition class.c:1190
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
Definition class.c:2638
int rb_block_given_p(void)
Determines if the current method is given a block.
Definition eval.c:936
#define rb_str_new2
Old name of rb_str_new_cstr.
Definition string.h:1675
#define RB_INTEGER_TYPE_P
Old name of rb_integer_type_p.
Definition value_type.h:87
#define RFLOAT_VALUE
Old name of rb_float_value.
Definition double.h:28
#define T_STRING
Old name of RUBY_T_STRING.
Definition value_type.h:78
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define UNREACHABLE
Old name of RBIMPL_UNREACHABLE.
Definition assume.h:28
#define T_FLOAT
Old name of RUBY_T_FLOAT.
Definition value_type.h:64
#define ID2SYM
Old name of RB_ID2SYM.
Definition symbol.h:44
#define T_BIGNUM
Old name of RUBY_T_BIGNUM.
Definition value_type.h:57
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define CLASS_OF
Old name of rb_class_of.
Definition globals.h:203
#define FIXABLE
Old name of RB_FIXABLE.
Definition fixnum.h:25
#define LONG2FIX
Old name of RB_INT2FIX.
Definition long.h:49
#define ASSUME
Old name of RBIMPL_ASSUME.
Definition assume.h:27
#define LONG2NUM
Old name of RB_LONG2NUM.
Definition long.h:50
#define FIXNUM_MIN
Old name of RUBY_FIXNUM_MIN.
Definition fixnum.h:27
#define FLONUM_P
Old name of RB_FLONUM_P.
#define Qtrue
Old name of RUBY_Qtrue.
#define ST2FIX
Old name of RB_ST2FIX.
Definition st_data_t.h:33
#define FIXNUM_MAX
Old name of RUBY_FIXNUM_MAX.
Definition fixnum.h:26
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
Definition long.h:46
#define T_OBJECT
Old name of RUBY_T_OBJECT.
Definition value_type.h:75
#define NIL_P
Old name of RB_NIL_P.
#define POSFIXABLE
Old name of RB_POSFIXABLE.
Definition fixnum.h:29
#define DBL2NUM
Old name of rb_float_new.
Definition double.h:29
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
Definition value_type.h:85
#define NUM2LONG
Old name of RB_NUM2LONG.
Definition long.h:51
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define CONST_ID
Old name of RUBY_CONST_ID.
Definition symbol.h:47
#define rb_ary_new2
Old name of rb_ary_new_capa.
Definition array.h:657
#define SYMBOL_P
Old name of RB_SYMBOL_P.
Definition value_type.h:88
void rb_iter_break(void)
Breaks from a block.
Definition vm.c:2086
VALUE rb_eRangeError
RangeError exception.
Definition error.c:1434
VALUE rb_eTypeError
TypeError exception.
Definition error.c:1430
VALUE rb_cTime
Time class.
Definition time.c:678
VALUE rb_Float(VALUE val)
This is the logic behind Kernel#Float.
Definition object.c:3624
VALUE rb_obj_alloc(VALUE klass)
Allocates an instance of the given class.
Definition object.c:2097
VALUE rb_mEnumerable
Enumerable module.
Definition enum.c:27
int rb_eql(VALUE lhs, VALUE rhs)
Checks for equality of the passed objects, in terms of Object#eql?.
Definition object.c:192
VALUE rb_cNumeric
Numeric class.
Definition numeric.c:196
VALUE rb_Array(VALUE val)
This is the logic behind Kernel#Array.
Definition object.c:3779
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
Definition object.c:247
VALUE rb_inspect(VALUE obj)
Generates a human-readable textual representation of the given object.
Definition object.c:680
VALUE rb_cRange
Range class.
Definition range.c:31
VALUE rb_equal(VALUE lhs, VALUE rhs)
This function is an optimised version of calling #==.
Definition object.c:179
VALUE rb_obj_is_kind_of(VALUE obj, VALUE klass)
Queries if the given object is an instance (of possibly descendants) of the given class.
Definition object.c:865
VALUE rb_obj_freeze(VALUE obj)
Just calls rb_obj_freeze_inline() inside.
Definition object.c:1260
VALUE rb_check_to_integer(VALUE val, const char *mid)
Identical to rb_check_convert_type(), except the return value type is fixed to rb_cInteger.
Definition object.c:3179
VALUE rb_to_int(VALUE val)
Identical to rb_check_to_int(), except it raises in case of conversion mismatch.
Definition object.c:3192
#define RUBY_FIXNUM_MAX
Maximum possible value that a fixnum can represent.
Definition fixnum.h:55
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Definition vm_eval.c:1099
VALUE rb_call_super(int argc, const VALUE *argv)
This resembles ruby's super.
Definition vm_eval.c:362
#define RETURN_SIZED_ENUMERATOR(obj, argc, argv, size_fn)
This roughly resembles return enum_for(__callee__) unless block_given?.
Definition enumerator.h:206
#define RETURN_ENUMERATOR(obj, argc, argv)
Identical to RETURN_SIZED_ENUMERATOR(), except its size is unknown.
Definition enumerator.h:239
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
Definition error.h:284
int rb_range_values(VALUE range, VALUE *begp, VALUE *endp, int *exclp)
Deconstructs a range into its components.
Definition range.c:1838
VALUE rb_range_new(VALUE beg, VALUE end, int excl)
Creates a new Range.
Definition range.c:68
VALUE rb_range_beg_len(VALUE range, long *begp, long *lenp, long len, int err)
Deconstructs a numerical range.
Definition range.c:1926
#define rb_hash_uint(h, i)
Just another name of st_hash_uint.
Definition string.h:942
#define rb_hash_end(h)
Just another name of st_hash_end.
Definition string.h:945
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
Definition string.c:3695
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
Definition string.h:1498
VALUE rb_str_dup(VALUE str)
Duplicates a string.
Definition string.c:1933
VALUE rb_str_cat(VALUE dst, const char *src, long srclen)
Destructively appends the passed contents to the string.
Definition string.c:3463
st_index_t rb_hash_start(st_index_t i)
Starts a series of hashing.
Definition random.c:1746
VALUE rb_check_string_type(VALUE obj)
Try converting an object to its stringised representation using its to_str method,...
Definition string.c:2867
VALUE rb_str_intern(VALUE str)
Identical to rb_to_symbol(), except it assumes the receiver being an instance of RString.
Definition symbol.c:894
VALUE rb_obj_as_string(VALUE obj)
Try converting an object to its stringised representation using its to_s method, if any.
Definition string.c:1792
VALUE rb_struct_define_without_accessor(const char *name, VALUE super, rb_alloc_func_t func,...)
Identical to rb_struct_define(), except it does not define accessor methods.
Definition struct.c:472
VALUE rb_struct_alloc_noinit(VALUE klass)
Allocates an instance of the given class.
Definition struct.c:405
VALUE rb_exec_recursive(VALUE(*f)(VALUE g, VALUE h, int r), VALUE g, VALUE h)
"Recursion" API entry point.
VALUE rb_exec_recursive_paired(VALUE(*f)(VALUE g, VALUE h, int r), VALUE g, VALUE p, VALUE h)
Identical to rb_exec_recursive(), except it checks for the recursion on the ordered pair of { g,...
VALUE rb_ivar_set(VALUE obj, ID name, VALUE val)
Identical to rb_iv_set(), except it accepts the name as an ID instead of a C string.
Definition variable.c:1924
VALUE rb_ivar_get(VALUE obj, ID name)
Identical to rb_iv_get(), except it accepts the name as an ID instead of a C string.
Definition variable.c:1415
VALUE rb_class_name(VALUE obj)
Queries the name of the given object's class.
Definition variable.c:492
int rb_respond_to(VALUE obj, ID mid)
Queries if the object responds to the method.
Definition vm_method.c:2956
VALUE rb_check_funcall(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcallv(), except it returns RUBY_Qundef instead of raising rb_eNoMethodError.
Definition vm_eval.c:668
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
Definition symbol.h:284
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
Definition symbol.c:986
int len
Length of the buffer.
Definition io.h:8
#define RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg)
Shim for block function parameters.
Definition iterator.h:58
VALUE rb_yield(VALUE val)
Yields the block.
Definition vm_eval.c:1354
void rb_marshal_define_compat(VALUE newclass, VALUE oldclass, VALUE(*dumper)(VALUE), VALUE(*loader)(VALUE, VALUE))
Marshal format compatibility layer.
Definition marshal.c:136
VALUE rb_block_call(VALUE q, ID w, int e, const VALUE *r, type *t, VALUE y)
Call a method with a block.
VALUE rb_rescue2(type *q, VALUE w, type *e, VALUE r,...)
An equivalent of rescue clause.
#define RBIMPL_ATTR_NORETURN()
Wraps (or simulates) [[noreturn]]
Definition noreturn.h:38
#define RARRAY_AREF(a, i)
Definition rarray.h:403
#define RBASIC(obj)
Convenient casting macro.
Definition rbasic.h:40
#define RBIGNUM_SIGN
Just another name of rb_big_sign.
Definition rbignum.h:29
static bool RBIGNUM_NEGATIVE_P(VALUE b)
Checks if the bignum is negative.
Definition rbignum.h:74
static bool RBIGNUM_POSITIVE_P(VALUE b)
Checks if the bignum is positive.
Definition rbignum.h:61
const char * rb_obj_classname(VALUE obj)
Queries the name of the class of the passed object.
Definition variable.c:507
#define RTEST
This is an old name of RB_TEST.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
static bool RB_FLOAT_TYPE_P(VALUE obj)
Queries if the object is an instance of rb_cFloat.
Definition value_type.h:264
static bool rb_integer_type_p(VALUE obj)
Queries if the object is an instance of rb_cInteger.
Definition value_type.h:204
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
Definition value_type.h:376