Method: FalseClass#&
- Defined in:
- object.c
permalink #&(obj) ⇒ false #&(obj) ⇒ false
And—Returns false
. obj is always evaluated as it is the argument to a method call—there is no short-circuit evaluation in this case.
1516 1517 1518 1519 1520 |
# File 'object.c', line 1516
static VALUE
false_and(VALUE obj, VALUE obj2)
{
return Qfalse;
}
|