Method: NilClass#=~
- Defined in:
- object.c
permalink #=~(other) ⇒ nil
Dummy pattern matching – always returns nil.
1400 1401 1402 1403 1404 |
# File 'object.c', line 1400
static VALUE
nil_match(VALUE obj1, VALUE obj2)
{
return Qnil;
}
|