/* * call-seq: * rng.end => obj * * Returns the object that defines the end of <i>rng</i>. * * (1..10).end #=> 10 * (1...10).end #=> 10 */ static VALUE range_end(VALUE range) { return RANGE_END(range); }