Method: Range#exclude_end?
- Defined in:
- range.c
#exclude_end? ⇒ Boolean
133 134 135 136 137 |
# File 'range.c', line 133
static VALUE
range_exclude_end_p(VALUE range)
{
return RBOOL(EXCL(range));
}
|
133 134 135 136 137 |
# File 'range.c', line 133
static VALUE
range_exclude_end_p(VALUE range)
{
return RBOOL(EXCL(range));
}
|