Method: NilClass#=~

Defined in:
object.c

#=~(other) ⇒ nil

Dummy pattern matching – always returns nil.

Returns:

  • (nil)
[View source]

1400
1401
1402
1403
1404
# File 'object.c', line 1400

static VALUE
nil_match(VALUE obj1, VALUE obj2)
{
    return Qnil;
}