Method: Object#!~
- Defined in:
- object.c
#!~(other) ⇒ Boolean
Returns true if two objects do not match (using the =~ method), otherwise false.
1677 1678 1679 1680 1681 1682 |
# File 'object.c', line 1677
static VALUE
rb_obj_not_match(VALUE obj1, VALUE obj2)
{
VALUE result = rb_funcall(obj1, id_match, 1, obj2);
return rb_obj_not(result);
}
|