2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
range.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Thu Aug 19 17:46:47 JST 1993
|
|
|
|
|
2003-01-16 10:34:03 +03:00
|
|
|
Copyright (C) 1993-2003 Yukihiro Matsumoto
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#include "ruby.h"
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_cRange;
|
2001-05-30 13:12:34 +04:00
|
|
|
static ID id_cmp, id_succ, id_beg, id_end, id_excl;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2000-11-27 12:23:38 +03:00
|
|
|
#define EXCL(r) RTEST(rb_ivar_get((r), id_excl))
|
2002-07-30 14:22:32 +04:00
|
|
|
#define SET_EXCL(r,v) rb_ivar_set((r), id_excl, (v) ? Qtrue : Qfalse)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
2003-04-18 22:05:11 +04:00
|
|
|
range_failed()
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2003-04-18 22:05:11 +04:00
|
|
|
rb_raise(rb_eArgError, "bad value for range");
|
|
|
|
return Qnil; /* dummy */
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2003-04-18 22:05:11 +04:00
|
|
|
range_check(args)
|
|
|
|
VALUE *args;
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2003-04-18 22:05:11 +04:00
|
|
|
VALUE v;
|
|
|
|
|
|
|
|
v = rb_funcall(args[0], id_cmp, 1, args[1]);
|
|
|
|
if (NIL_P(v)) range_failed();
|
|
|
|
return Qnil;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-02-29 11:05:32 +03:00
|
|
|
static void
|
2002-06-11 11:02:23 +04:00
|
|
|
range_init(range, beg, end, exclude_end)
|
|
|
|
VALUE range, beg, end;
|
1999-08-13 09:45:20 +04:00
|
|
|
int exclude_end;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE args[2];
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-07-30 14:22:32 +04:00
|
|
|
args[0] = beg;
|
|
|
|
args[1] = end;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (!FIXNUM_P(beg) || !FIXNUM_P(end)) {
|
2001-07-14 19:17:19 +04:00
|
|
|
rb_rescue(range_check, (VALUE)args, range_failed, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2002-06-11 11:02:23 +04:00
|
|
|
SET_EXCL(range, exclude_end);
|
|
|
|
rb_ivar_set(range, id_beg, beg);
|
|
|
|
rb_ivar_set(range, id_end, end);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_range_new(beg, end, exclude_end)
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE beg, end;
|
1999-08-13 09:45:20 +04:00
|
|
|
int exclude_end;
|
|
|
|
{
|
2002-06-11 11:02:23 +04:00
|
|
|
VALUE range = rb_obj_alloc(rb_cRange);
|
2000-02-29 11:05:32 +03:00
|
|
|
|
2002-06-11 11:02:23 +04:00
|
|
|
range_init(range, beg, end, exclude_end);
|
|
|
|
return range;
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Range.new(start, end, exclusive=false) => range
|
|
|
|
*
|
|
|
|
* Constructs a range using the given <i>start</i> and <i>end</i>. If the third
|
|
|
|
* parameter is omitted or is <code>false</code>, the <i>range</i> will include
|
|
|
|
* the end object; otherwise, it will be excluded.
|
|
|
|
*/
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
static VALUE
|
2002-06-11 11:02:23 +04:00
|
|
|
range_initialize(argc, argv, range)
|
1999-08-13 09:45:20 +04:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
2002-06-11 11:02:23 +04:00
|
|
|
VALUE range;
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2001-02-02 14:38:20 +03:00
|
|
|
VALUE beg, end, flags;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2001-02-02 14:38:20 +03:00
|
|
|
rb_scan_args(argc, argv, "21", &beg, &end, &flags);
|
2000-02-29 11:05:32 +03:00
|
|
|
/* Ranges are immutable, so that they should be initialized only once. */
|
2002-06-11 11:02:23 +04:00
|
|
|
if (rb_ivar_defined(range, id_beg)) {
|
2002-05-01 13:41:50 +04:00
|
|
|
rb_name_error(rb_intern("initialize"), "`initialize' called twice");
|
2000-02-29 11:05:32 +03:00
|
|
|
}
|
2002-06-11 11:02:23 +04:00
|
|
|
range_init(range, beg, end, RTEST(flags));
|
2000-02-29 11:05:32 +03:00
|
|
|
return Qnil;
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.exclude_end? => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>rng</i> excludes its end value.
|
|
|
|
*/
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
static VALUE
|
|
|
|
range_exclude_end_p(range)
|
|
|
|
VALUE range;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-07-30 14:22:32 +04:00
|
|
|
return EXCL(range) ? Qtrue : Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng == obj => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> only if <i>obj</i> is a Range, has equivalent
|
|
|
|
* beginning and end items (by comparing them with <code>==</code>), and has
|
|
|
|
* the same #exclude_end? setting as <i>rng</t>.
|
|
|
|
*
|
|
|
|
* (0..2) == (0..2) #=> true
|
|
|
|
* (0..2) == Range.new(0,2) #=> true
|
|
|
|
* (0..2) == (0...2) #=> false
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-11-27 12:23:38 +03:00
|
|
|
static VALUE
|
|
|
|
range_eq(range, obj)
|
|
|
|
VALUE range, obj;
|
|
|
|
{
|
2000-12-29 05:46:12 +03:00
|
|
|
if (range == obj) return Qtrue;
|
2002-09-03 09:20:14 +04:00
|
|
|
if (!rb_obj_is_instance_of(obj, rb_obj_class(range)))
|
|
|
|
return Qfalse;
|
2000-11-27 12:23:38 +03:00
|
|
|
|
|
|
|
if (!rb_equal(rb_ivar_get(range, id_beg), rb_ivar_get(obj, id_beg)))
|
|
|
|
return Qfalse;
|
|
|
|
if (!rb_equal(rb_ivar_get(range, id_end), rb_ivar_get(obj, id_end)))
|
|
|
|
return Qfalse;
|
|
|
|
|
|
|
|
if (EXCL(range) != EXCL(obj)) return Qfalse;
|
|
|
|
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2001-05-30 13:12:34 +04:00
|
|
|
static int
|
2002-01-07 08:27:01 +03:00
|
|
|
r_lt(a, b)
|
2001-05-30 13:12:34 +04:00
|
|
|
VALUE a, b;
|
|
|
|
{
|
|
|
|
VALUE r = rb_funcall(a, id_cmp, 1, b);
|
|
|
|
|
2002-12-19 12:20:20 +03:00
|
|
|
if (NIL_P(r)) return Qfalse;
|
2003-05-19 19:45:46 +04:00
|
|
|
if (rb_cmpint(r, a, b) < 0) return Qtrue;
|
2001-05-30 13:12:34 +04:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2002-01-07 08:27:01 +03:00
|
|
|
r_le(a, b)
|
2001-05-30 13:12:34 +04:00
|
|
|
VALUE a, b;
|
|
|
|
{
|
2004-05-14 20:39:15 +04:00
|
|
|
int c;
|
2001-05-30 13:12:34 +04:00
|
|
|
VALUE r = rb_funcall(a, id_cmp, 1, b);
|
|
|
|
|
2002-12-19 12:20:20 +03:00
|
|
|
if (NIL_P(r)) return Qfalse;
|
2004-05-14 20:39:15 +04:00
|
|
|
c = rb_cmpint(r, a, b);
|
|
|
|
if (c == 0) return INT2FIX(0);
|
|
|
|
if (c < 0) return Qtrue;
|
2001-05-30 13:12:34 +04:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2002-12-19 12:20:20 +03:00
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.eql?(obj) => true or false
|
|
|
|
*
|
|
|
|
* Returns <code>true</code> only if <i>obj</i> is a Range, has equivalent
|
|
|
|
* beginning and end items (by comparing them with #eql?), and has the same
|
|
|
|
* #exclude_end? setting as <i>rng</i>.
|
|
|
|
*
|
|
|
|
* (0..2) == (0..2) #=> true
|
|
|
|
* (0..2) == Range.new(0,2) #=> true
|
|
|
|
* (0..2) == (0...2) #=> false
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2001-11-08 12:21:59 +03:00
|
|
|
static VALUE
|
|
|
|
range_eql(range, obj)
|
|
|
|
VALUE range, obj;
|
|
|
|
{
|
|
|
|
if (range == obj) return Qtrue;
|
2002-09-03 09:20:14 +04:00
|
|
|
if (!rb_obj_is_instance_of(obj, rb_obj_class(range)))
|
|
|
|
return Qfalse;
|
2001-11-08 12:21:59 +03:00
|
|
|
|
|
|
|
if (!rb_eql(rb_ivar_get(range, id_beg), rb_ivar_get(obj, id_beg)))
|
|
|
|
return Qfalse;
|
|
|
|
if (!rb_eql(rb_ivar_get(range, id_end), rb_ivar_get(obj, id_end)))
|
|
|
|
return Qfalse;
|
|
|
|
|
|
|
|
if (EXCL(range) != EXCL(obj)) return Qfalse;
|
|
|
|
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2003-12-30 19:38:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.hash => fixnum
|
|
|
|
*
|
|
|
|
* Generate a hash value such that two ranges with the same start and
|
|
|
|
* end points, and the same value for the "exclude end" flag, generate
|
|
|
|
* the same hash value.
|
|
|
|
*/
|
|
|
|
|
2001-11-08 12:21:59 +03:00
|
|
|
static VALUE
|
2002-05-30 10:12:29 +04:00
|
|
|
range_hash(range)
|
|
|
|
VALUE range;
|
2001-11-08 12:21:59 +03:00
|
|
|
{
|
|
|
|
long hash = EXCL(range);
|
|
|
|
VALUE v;
|
|
|
|
|
|
|
|
v = rb_hash(rb_ivar_get(range, id_beg));
|
|
|
|
hash ^= v << 1;
|
|
|
|
v = rb_hash(rb_ivar_get(range, id_end));
|
|
|
|
hash ^= v << 9;
|
2002-05-30 10:12:29 +04:00
|
|
|
hash ^= EXCL(range) << 24;
|
2001-11-08 12:21:59 +03:00
|
|
|
|
2002-07-30 14:22:32 +04:00
|
|
|
return LONG2FIX(hash);
|
2001-11-08 12:21:59 +03:00
|
|
|
}
|
|
|
|
|
2001-08-14 12:13:31 +04:00
|
|
|
static VALUE
|
2002-05-30 10:12:29 +04:00
|
|
|
str_step(args)
|
2001-08-14 12:13:31 +04:00
|
|
|
VALUE *args;
|
|
|
|
{
|
|
|
|
return rb_str_upto(args[0], args[1], EXCL(args[2]));
|
|
|
|
}
|
|
|
|
|
2002-05-30 10:12:29 +04:00
|
|
|
static void
|
|
|
|
range_each_func(range, func, v, e, arg)
|
|
|
|
VALUE range;
|
2004-10-19 14:25:23 +04:00
|
|
|
void (*func) _((VALUE, void*));
|
2002-07-30 14:22:32 +04:00
|
|
|
VALUE v, e;
|
2002-05-30 10:12:29 +04:00
|
|
|
void *arg;
|
|
|
|
{
|
2004-05-14 20:39:15 +04:00
|
|
|
int c;
|
|
|
|
|
2002-05-30 10:12:29 +04:00
|
|
|
if (EXCL(range)) {
|
|
|
|
while (r_lt(v, e)) {
|
2004-10-19 14:25:23 +04:00
|
|
|
(*func)(v, arg);
|
2002-05-30 10:12:29 +04:00
|
|
|
v = rb_funcall(v, id_succ, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2004-05-14 20:39:15 +04:00
|
|
|
while (RTEST(c = r_le(v, e))) {
|
2004-10-19 14:25:23 +04:00
|
|
|
(*func)(v, arg);
|
2004-05-14 20:39:15 +04:00
|
|
|
if (c == INT2FIX(0)) break;
|
2002-05-30 10:12:29 +04:00
|
|
|
v = rb_funcall(v, id_succ, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-06 11:40:06 +04:00
|
|
|
static VALUE
|
|
|
|
step_i(i, iter)
|
|
|
|
VALUE i;
|
|
|
|
long *iter;
|
|
|
|
{
|
|
|
|
iter[0]--;
|
|
|
|
if (iter[0] == 0) {
|
|
|
|
rb_yield(i);
|
|
|
|
iter[0] = iter[1];
|
|
|
|
}
|
2004-10-19 14:25:23 +04:00
|
|
|
return Qnil;
|
2004-10-06 11:40:06 +04:00
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.step(n=1) {| obj | block } => rng
|
|
|
|
*
|
|
|
|
* Iterates over <i>rng</i>, passing each <i>n</i>th element to the block. If
|
|
|
|
* the range contains numbers or strings, natural ordering is used. Otherwise
|
|
|
|
* <code>step</code> invokes <code>succ</code> to iterate through range
|
|
|
|
* elements. The following code uses class <code>Xs</code>, which is defined
|
|
|
|
* in the class-level documentation.
|
|
|
|
*
|
|
|
|
* range = Xs.new(1)..Xs.new(10)
|
|
|
|
* range.step(2) {|x| puts x}
|
|
|
|
* range.step(3) {|x| puts x}
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* 1 x
|
|
|
|
* 3 xxx
|
|
|
|
* 5 xxxxx
|
|
|
|
* 7 xxxxxxx
|
|
|
|
* 9 xxxxxxxxx
|
|
|
|
* 1 x
|
|
|
|
* 4 xxxx
|
|
|
|
* 7 xxxxxxx
|
|
|
|
* 10 xxxxxxxxxx
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2001-08-14 12:13:31 +04:00
|
|
|
static VALUE
|
|
|
|
range_step(argc, argv, range)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
VALUE range;
|
|
|
|
{
|
|
|
|
VALUE b, e, step;
|
2002-05-30 10:12:29 +04:00
|
|
|
long unit;
|
2001-08-14 12:13:31 +04:00
|
|
|
|
|
|
|
b = rb_ivar_get(range, id_beg);
|
|
|
|
e = rb_ivar_get(range, id_end);
|
2002-05-01 13:41:50 +04:00
|
|
|
if (rb_scan_args(argc, argv, "01", &step) == 0) {
|
|
|
|
step = INT2FIX(1);
|
|
|
|
}
|
2001-08-14 12:13:31 +04:00
|
|
|
|
2002-05-30 10:12:29 +04:00
|
|
|
unit = NUM2LONG(step);
|
2003-02-13 12:11:11 +03:00
|
|
|
if (unit < 0) {
|
|
|
|
rb_raise(rb_eArgError, "step can't be negative");
|
|
|
|
}
|
2005-06-30 10:20:09 +04:00
|
|
|
if (unit == 0) rb_raise(rb_eArgError, "step can't be 0");
|
2001-08-14 12:13:31 +04:00
|
|
|
if (FIXNUM_P(b) && FIXNUM_P(e)) { /* fixnums are special */
|
2002-05-30 10:12:29 +04:00
|
|
|
long end = FIX2LONG(e);
|
2002-05-01 13:41:50 +04:00
|
|
|
long i;
|
2002-05-30 10:12:29 +04:00
|
|
|
|
2002-05-02 11:50:36 +04:00
|
|
|
if (!EXCL(range)) end += 1;
|
2002-05-30 10:12:29 +04:00
|
|
|
for (i=FIX2LONG(b); i<end; i+=unit) {
|
2002-08-21 19:47:54 +04:00
|
|
|
rb_yield(LONG2NUM(i));
|
2001-08-14 12:13:31 +04:00
|
|
|
}
|
|
|
|
}
|
2002-05-30 10:12:29 +04:00
|
|
|
else {
|
2003-06-07 19:34:31 +04:00
|
|
|
VALUE tmp = rb_check_string_type(b);
|
2001-08-14 12:13:31 +04:00
|
|
|
|
2003-06-07 19:34:31 +04:00
|
|
|
if (!NIL_P(tmp)) {
|
|
|
|
VALUE args[5];
|
|
|
|
long iter[2];
|
|
|
|
|
|
|
|
b = tmp;
|
|
|
|
args[0] = b; args[1] = e; args[2] = range;
|
|
|
|
iter[0] = 1; iter[1] = unit;
|
2004-10-29 12:19:50 +04:00
|
|
|
rb_iterate((VALUE(*)_((VALUE)))str_step, (VALUE)args, step_i,
|
|
|
|
(VALUE)iter);
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
else if (rb_obj_is_kind_of(b, rb_cNumeric)) {
|
|
|
|
ID c = rb_intern(EXCL(range) ? "<" : "<=");
|
|
|
|
|
|
|
|
if (rb_equal(step, INT2FIX(0))) rb_raise(rb_eArgError, "step can't be 0");
|
|
|
|
while (RTEST(rb_funcall(b, c, 1, e))) {
|
|
|
|
rb_yield(b);
|
|
|
|
b = rb_funcall(b, '+', 1, step);
|
|
|
|
}
|
2001-08-14 12:13:31 +04:00
|
|
|
}
|
2003-06-07 19:34:31 +04:00
|
|
|
else {
|
|
|
|
long args[2];
|
|
|
|
|
|
|
|
if (!rb_respond_to(b, id_succ)) {
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
rb_raise(rb_eTypeError, "can't iterate from %s",
|
2003-06-07 19:34:31 +04:00
|
|
|
rb_obj_classname(b));
|
|
|
|
}
|
|
|
|
args[0] = 1;
|
|
|
|
args[1] = unit;
|
|
|
|
range_each_func(range, step_i, b, e, args);
|
|
|
|
}
|
2001-08-14 12:13:31 +04:00
|
|
|
}
|
|
|
|
return range;
|
|
|
|
}
|
|
|
|
|
2004-10-19 14:25:23 +04:00
|
|
|
static void
|
2002-05-30 10:12:29 +04:00
|
|
|
each_i(v, arg)
|
|
|
|
VALUE v;
|
|
|
|
void *arg;
|
|
|
|
{
|
2004-10-06 11:40:06 +04:00
|
|
|
rb_yield(v);
|
2002-05-30 10:12:29 +04:00
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.each {| i | block } => rng
|
|
|
|
*
|
|
|
|
* Iterates over the elements <i>rng</i>, passing each in turn to the
|
2003-12-30 19:38:32 +03:00
|
|
|
* block. You can only iterate if the start object of the range
|
|
|
|
* supports the +succ+ method (which means that you can't iterate over
|
|
|
|
* ranges of +Float+ objects).
|
2003-12-24 07:29:32 +03:00
|
|
|
*
|
|
|
|
* (10..15).each do |n|
|
|
|
|
* print n, ' '
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* 10 11 12 13 14 15
|
|
|
|
*/
|
|
|
|
|
2002-05-01 13:41:50 +04:00
|
|
|
static VALUE
|
|
|
|
range_each(range)
|
|
|
|
VALUE range;
|
|
|
|
{
|
2002-05-30 10:12:29 +04:00
|
|
|
VALUE beg, end;
|
|
|
|
|
|
|
|
beg = rb_ivar_get(range, id_beg);
|
|
|
|
end = rb_ivar_get(range, id_end);
|
|
|
|
|
|
|
|
if (!rb_respond_to(beg, id_succ)) {
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
rb_raise(rb_eTypeError, "can't iterate from %s",
|
2003-01-31 07:00:17 +03:00
|
|
|
rb_obj_classname(beg));
|
2002-05-30 10:12:29 +04:00
|
|
|
}
|
2003-01-08 09:05:08 +03:00
|
|
|
if (FIXNUM_P(beg) && FIXNUM_P(end)) { /* fixnums are special */
|
|
|
|
long lim = FIX2LONG(end);
|
|
|
|
long i;
|
|
|
|
|
|
|
|
if (!EXCL(range)) lim += 1;
|
|
|
|
for (i=FIX2LONG(beg); i<lim; i++) {
|
|
|
|
rb_yield(LONG2NUM(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (TYPE(beg) == T_STRING) {
|
2002-05-30 10:12:29 +04:00
|
|
|
VALUE args[5];
|
|
|
|
long iter[2];
|
|
|
|
|
|
|
|
args[0] = beg; args[1] = end; args[2] = range;
|
|
|
|
iter[0] = 1; iter[1] = 1;
|
2004-10-29 12:19:50 +04:00
|
|
|
rb_iterate((VALUE(*)_((VALUE)))str_step, (VALUE)args, step_i,
|
|
|
|
(VALUE)iter);
|
2002-05-30 10:12:29 +04:00
|
|
|
}
|
|
|
|
else {
|
2003-01-16 10:38:40 +03:00
|
|
|
range_each_func(range, each_i, beg, end, NULL);
|
2002-05-30 10:12:29 +04:00
|
|
|
}
|
|
|
|
return range;
|
2002-05-01 13:41:50 +04:00
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.first => obj
|
|
|
|
* rng.begin => obj
|
|
|
|
*
|
|
|
|
* Returns the first object in <i>rng</i>.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2002-06-11 11:02:23 +04:00
|
|
|
range_first(range)
|
|
|
|
VALUE range;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-06-11 11:02:23 +04:00
|
|
|
return rb_ivar_get(range, id_beg);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.end => obj
|
|
|
|
* rng.last => obj
|
|
|
|
*
|
|
|
|
* Returns the object that defines the end of <i>rng</i>.
|
|
|
|
*
|
|
|
|
* (1..10).end #=> 10
|
|
|
|
* (1...10).end #=> 10
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2002-06-11 11:02:23 +04:00
|
|
|
range_last(range)
|
|
|
|
VALUE range;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-06-11 11:02:23 +04:00
|
|
|
return rb_ivar_get(range, id_end);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_range_beg_len(range, begp, lenp, len, err)
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE range;
|
1999-08-13 09:45:20 +04:00
|
|
|
long *begp, *lenp;
|
|
|
|
long len;
|
|
|
|
int err;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
long beg, end, b, e;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (!rb_obj_is_kind_of(range, rb_cRange)) return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
beg = b = NUM2LONG(rb_ivar_get(range, id_beg));
|
|
|
|
end = e = NUM2LONG(rb_ivar_get(range, id_end));
|
|
|
|
|
|
|
|
if (beg < 0) {
|
|
|
|
beg += len;
|
|
|
|
if (beg < 0) goto out_of_range;
|
|
|
|
}
|
|
|
|
if (err == 0 || err == 2) {
|
|
|
|
if (beg > len) goto out_of_range;
|
2004-07-24 13:48:21 +04:00
|
|
|
if (end > len) end = len;
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2003-06-20 11:11:44 +04:00
|
|
|
if (end < 0) end += len;
|
2003-06-02 08:49:46 +04:00
|
|
|
if (!EXCL(range)) end++; /* include end point */
|
1999-08-13 09:45:20 +04:00
|
|
|
len = end - beg;
|
2004-07-24 13:48:21 +04:00
|
|
|
if (len < 0) len = 0;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
*begp = beg;
|
|
|
|
*lenp = len;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qtrue;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
out_of_range:
|
|
|
|
if (err) {
|
2002-05-28 22:11:07 +04:00
|
|
|
rb_raise(rb_eRangeError, "%ld..%s%ld out of range",
|
2002-01-25 11:22:11 +03:00
|
|
|
b, EXCL(range)? "." : "", e);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
return Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-30 19:38:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.to_s => string
|
|
|
|
*
|
|
|
|
* Convert this range object to a printable form.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
|
|
|
range_to_s(range)
|
|
|
|
VALUE range;
|
|
|
|
{
|
|
|
|
VALUE str, str2;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
str = rb_obj_as_string(rb_ivar_get(range, id_beg));
|
|
|
|
str2 = rb_obj_as_string(rb_ivar_get(range, id_end));
|
2000-04-10 09:48:43 +04:00
|
|
|
str = rb_str_dup(str);
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_str_cat(str, "...", EXCL(range)?3:2);
|
2000-04-10 09:48:43 +04:00
|
|
|
rb_str_append(str, str2);
|
|
|
|
OBJ_INFECT(str, str2);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2003-12-30 19:38:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* rng.inspect => string
|
|
|
|
*
|
|
|
|
* Convert this range object to a printable form (using
|
|
|
|
* <code>inspect</code> to convert the start and end
|
|
|
|
* objects).
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
|
|
|
range_inspect(range)
|
|
|
|
VALUE range;
|
|
|
|
{
|
|
|
|
VALUE str, str2;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
str = rb_inspect(rb_ivar_get(range, id_beg));
|
|
|
|
str2 = rb_inspect(rb_ivar_get(range, id_end));
|
2000-04-10 09:48:43 +04:00
|
|
|
str = rb_str_dup(str);
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_str_cat(str, "...", EXCL(range)?3:2);
|
2000-04-10 09:48:43 +04:00
|
|
|
rb_str_append(str, str2);
|
|
|
|
OBJ_INFECT(str, str2);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-10-19 14:25:23 +04:00
|
|
|
* rng === obj => true or false
|
|
|
|
* rng.member?(val) => true or false
|
|
|
|
* rng.include?(val) => true or false
|
2003-12-24 07:29:32 +03:00
|
|
|
*
|
|
|
|
* Returns <code>true</code> if <i>obj</i> is an element of
|
|
|
|
* <i>rng</i>, <code>false</code> otherwise. Conveniently,
|
|
|
|
* <code>===</code> is the comparison operator used by
|
|
|
|
* <code>case</code> statements.
|
|
|
|
*
|
|
|
|
* case 79
|
|
|
|
* when 1..50 then print "low\n"
|
|
|
|
* when 51..75 then print "medium\n"
|
|
|
|
* when 76..100 then print "high\n"
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* high
|
|
|
|
*/
|
|
|
|
|
2002-06-11 11:02:23 +04:00
|
|
|
static VALUE
|
|
|
|
range_include(range, val)
|
|
|
|
VALUE range, val;
|
|
|
|
{
|
|
|
|
VALUE beg, end;
|
|
|
|
|
|
|
|
beg = rb_ivar_get(range, id_beg);
|
|
|
|
end = rb_ivar_get(range, id_end);
|
2002-12-19 12:20:20 +03:00
|
|
|
if (r_le(beg, val)) {
|
|
|
|
if (EXCL(range)) {
|
|
|
|
if (r_lt(val, end)) return Qtrue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (r_le(val, end)) return Qtrue;
|
|
|
|
}
|
2002-06-11 11:02:23 +04:00
|
|
|
}
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-24 07:29:32 +03:00
|
|
|
|
|
|
|
/* A <code>Range</code> represents an interval---a set of values with a
|
|
|
|
* start and an end. Ranges may be constructed using the
|
|
|
|
* <em>s</em><code>..</code><em>e</em> and
|
|
|
|
* <em>s</em><code>...</code><em>e</em> literals, or with
|
|
|
|
* <code>Range::new</code>. Ranges constructed using <code>..</code>
|
|
|
|
* run from the start to the end inclusively. Those created using
|
|
|
|
* <code>...</code> exclude the end value. When used as an iterator,
|
|
|
|
* ranges return each value in the sequence.
|
|
|
|
*
|
|
|
|
* (-1..-5).to_a #=> []
|
|
|
|
* (-5..-1).to_a #=> [-5, -4, -3, -2, -1]
|
|
|
|
* ('a'..'e').to_a #=> ["a", "b", "c", "d", "e"]
|
|
|
|
* ('a'...'e').to_a #=> ["a", "b", "c", "d"]
|
|
|
|
*
|
|
|
|
* Ranges can be constructed using objects of any type, as long as the
|
|
|
|
* objects can be compared using their <code><=></code> operator and
|
|
|
|
* they support the <code>succ</code> method to return the next object
|
|
|
|
* in sequence.
|
|
|
|
*
|
|
|
|
* class Xs # represent a string of 'x's
|
|
|
|
* include Comparable
|
|
|
|
* attr :length
|
|
|
|
* def initialize(n)
|
|
|
|
* @length = n
|
|
|
|
* end
|
|
|
|
* def succ
|
|
|
|
* Xs.new(@length + 1)
|
|
|
|
* end
|
|
|
|
* def <=>(other)
|
|
|
|
* @length <=> other.length
|
|
|
|
* end
|
|
|
|
* def to_s
|
|
|
|
* sprintf "%2d #{inspect}", @length
|
|
|
|
* end
|
|
|
|
* def inspect
|
|
|
|
* 'x' * @length
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* r = Xs.new(3)..Xs.new(6) #=> xxx..xxxxxx
|
|
|
|
* r.to_a #=> [xxx, xxxx, xxxxx, xxxxxx]
|
|
|
|
* r.member?(Xs.new(5)) #=> true
|
|
|
|
*
|
|
|
|
* In the previous code example, class <code>Xs</code> includes the
|
|
|
|
* <code>Comparable</code> module. This is because
|
|
|
|
* <code>Enumerable#member?</code> checks for equality using
|
|
|
|
* <code>==</code>. Including <code>Comparable</code> ensures that the
|
|
|
|
* <code>==</code> method is defined in terms of the <code><=></code>
|
|
|
|
* method implemented in <code>Xs</code>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
|
|
|
Init_Range()
|
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_cRange = rb_define_class("Range", rb_cObject);
|
|
|
|
rb_include_module(rb_cRange, rb_mEnumerable);
|
2000-02-29 11:05:32 +03:00
|
|
|
rb_define_method(rb_cRange, "initialize", range_initialize, -1);
|
2000-11-27 12:23:38 +03:00
|
|
|
rb_define_method(rb_cRange, "==", range_eq, 1);
|
2002-06-18 10:29:07 +04:00
|
|
|
rb_define_method(rb_cRange, "===", range_include, 1);
|
2001-11-08 12:21:59 +03:00
|
|
|
rb_define_method(rb_cRange, "eql?", range_eql, 1);
|
|
|
|
rb_define_method(rb_cRange, "hash", range_hash, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_cRange, "each", range_each, 0);
|
2001-08-14 12:13:31 +04:00
|
|
|
rb_define_method(rb_cRange, "step", range_step, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_cRange, "first", range_first, 0);
|
|
|
|
rb_define_method(rb_cRange, "last", range_last, 0);
|
|
|
|
rb_define_method(rb_cRange, "begin", range_first, 0);
|
|
|
|
rb_define_method(rb_cRange, "end", range_last, 0);
|
|
|
|
rb_define_method(rb_cRange, "to_s", range_to_s, 0);
|
|
|
|
rb_define_method(rb_cRange, "inspect", range_inspect, 0);
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_define_method(rb_cRange, "exclude_end?", range_exclude_end_p, 0);
|
|
|
|
|
2004-10-19 14:25:23 +04:00
|
|
|
rb_define_method(rb_cRange, "member?", range_include, 1);
|
2002-06-11 11:02:23 +04:00
|
|
|
rb_define_method(rb_cRange, "include?", range_include, 1);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
id_cmp = rb_intern("<=>");
|
2001-05-30 13:12:34 +04:00
|
|
|
id_succ = rb_intern("succ");
|
1999-01-20 07:59:39 +03:00
|
|
|
id_beg = rb_intern("begin");
|
|
|
|
id_end = rb_intern("end");
|
2000-11-27 12:23:38 +03:00
|
|
|
id_excl = rb_intern("excl");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|