/* * rng.begin/rng.first -> anObject * ----- * Returns the first object in the range. */ static VALUE range_first(obj) VALUE obj; { VALUE b; b = rb_ivar_get(obj, id_beg); return b; }