Method: NilClass#nil?
- Defined in:
- object.c
#nil? ⇒ true
Returns true. For all other objects, method nil? returns false.
1646 1647 1648 1649 1650 |
# File 'object.c', line 1646
static VALUE
rb_true(VALUE obj)
{
return Qtrue;
}
|