/* * rng.last/rng.end -> anObject * ----- * Return the last object in range. */ static VALUE range_last(obj) VALUE obj; { VALUE e; e = rb_ivar_get(obj, id_end); return e; }