Class: NilClass
Overview
The class of the singleton object nil
.
Instance Method Summary collapse
-
#&(obj2) ⇒ Object
And—Returns
false
. -
#===(other) ⇒ Boolean
Case Equality – For class Object, effectively the same as calling
#==
, but typically overridden by descendants to provide meaningful semantics incase
statements. -
#=~(other) ⇒ nil
Dummy pattern matching – always returns nil.
-
#^(obj2) ⇒ Object
Exclusive Or—If obj is
nil
orfalse
, returnsfalse
; otherwise, returnstrue
. -
#inspect ⇒ Object
Always returns the string “nil”.
-
#nil? ⇒ true
Only the object nil responds
true
tonil?
. -
#rationalize([eps]) ⇒ Object
Returns zero as a rational.
-
#to_a ⇒ Object
call-seq: nil.to_a -> [].
-
#to_c ⇒ Object
Returns zero as a complex.
-
#to_f ⇒ 0.0
Always returns zero.
-
#to_h ⇒ Object
call-seq: nil.to_h -> {}.
-
#to_i ⇒ 0
Always returns zero.
-
#to_r ⇒ Object
Returns zero as a rational.
-
#to_s ⇒ Object
Always returns the empty string.
-
#|(obj2) ⇒ Object
Or—Returns
false
if obj isnil
orfalse
;true
otherwise.
Instance Method Details
#&(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.
1555 1556 1557 1558 1559 |
# File 'object.c', line 1555
static VALUE
false_and(VALUE obj, VALUE obj2)
{
return Qfalse;
}
|
#===(other) ⇒ Boolean
Case Equality – For class Object, effectively the same as calling #==
, but typically overridden by descendants to provide meaningful semantics in case
statements.
144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'object.c', line 144
VALUE
rb_equal(VALUE obj1, VALUE obj2)
{
VALUE result;
if (obj1 == obj2) return Qtrue;
result = rb_equal_opt(obj1, obj2);
if (result == Qundef) {
result = rb_funcall(obj1, id_eq, 1, obj2);
}
if (RTEST(result)) return Qtrue;
return Qfalse;
}
|
#=~(other) ⇒ nil
Dummy pattern matching – always returns nil.
1439 1440 1441 1442 1443 |
# File 'object.c', line 1439
static VALUE
nil_match(VALUE obj1, VALUE obj2)
{
return Qnil;
}
|
#^(obj) ⇒ Boolean #^(obj) ⇒ Boolean
Exclusive Or—If obj is nil
or false
, returns false
; otherwise, returns true
.
1590 1591 1592 1593 1594 |
# File 'object.c', line 1590
static VALUE
false_xor(VALUE obj, VALUE obj2)
{
return RTEST(obj2)?Qtrue:Qfalse;
}
|
#inspect ⇒ Object
Always returns the string “nil”.
1426 1427 1428 1429 1430 |
# File 'object.c', line 1426
static VALUE
nil_inspect(VALUE obj)
{
return rb_usascii_str_new2("nil");
}
|
#nil? ⇒ true
Only the object nil responds true
to nil?
.
1603 1604 1605 1606 1607 |
# File 'object.c', line 1603
static VALUE
rb_true(VALUE obj)
{
return Qtrue;
}
|
#rationalize([eps]) ⇒ Object
Returns zero as a rational. The optional argument eps
is always ignored.
2145 2146 2147 2148 2149 2150 |
# File 'rational.c', line 2145
static VALUE
nilclass_rationalize(int argc, VALUE *argv, VALUE self)
{
rb_check_arity(argc, 0, 1);
return nilclass_to_r(self);
}
|
#to_a ⇒ Object
call-seq:
nil.to_a -> []
Always returns an empty array.
nil.to_a #=> []
1396 1397 1398 1399 1400 |
# File 'object.c', line 1396
static VALUE
nil_to_a(VALUE obj)
{
return rb_ary_new2(0);
}
|
#to_c ⇒ Object
Returns zero as a complex.
1695 1696 1697 1698 1699 |
# File 'complex.c', line 1695
static VALUE
nilclass_to_c(VALUE self)
{
return rb_complex_new1(INT2FIX(0));
}
|
#to_f ⇒ 0.0
Always returns zero.
nil.to_f #=> 0.0
1366 1367 1368 1369 1370 |
# File 'object.c', line 1366
static VALUE
nil_to_f(VALUE obj)
{
return DBL2NUM(0.0);
}
|
#to_h ⇒ Object
call-seq:
nil.to_h -> {}
Always returns an empty hash.
nil.to_h #=> {}
1413 1414 1415 1416 1417 |
# File 'object.c', line 1413
static VALUE
nil_to_h(VALUE obj)
{
return rb_hash_new();
}
|
#to_i ⇒ 0
Always returns zero.
nil.to_i #=> 0
1351 1352 1353 1354 1355 |
# File 'object.c', line 1351
static VALUE
nil_to_i(VALUE obj)
{
return INT2FIX(0);
}
|
#to_r ⇒ Object
Returns zero as a rational.
2132 2133 2134 2135 2136 |
# File 'rational.c', line 2132
static VALUE
nilclass_to_r(VALUE self)
{
return rb_rational_new1(INT2FIX(0));
}
|
#to_s ⇒ Object
Always returns the empty string.
1379 1380 1381 1382 1383 |
# File 'object.c', line 1379
static VALUE
nil_to_s(VALUE obj)
{
return rb_cNilClass_to_s;
}
|
#|(obj) ⇒ Boolean #|(obj) ⇒ Boolean
Or—Returns false
if obj is nil
or false
; true
otherwise.
1571 1572 1573 1574 1575 |
# File 'object.c', line 1571
static VALUE
false_or(VALUE obj, VALUE obj2)
{
return RTEST(obj2)?Qtrue:Qfalse;
}
|