Class: NilClass

Inherits:
Object show all
Defined in:
object.c,
object.c

Overview

The class of the singleton object nil.

Instance Method Summary collapse

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.

Overloads:

  • #&(obj) ⇒ false

    Returns:

    • (false)
  • #&(obj) ⇒ false

    Returns:

    • (false)


1542
1543
1544
1545
1546
# File 'object.c', line 1542

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.

Returns:

  • (Boolean)


131
132
133
134
135
136
137
138
139
140
141
142
143
# File 'object.c', line 131

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.

Returns:

  • (nil)


1426
1427
1428
1429
1430
# File 'object.c', line 1426

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.

Overloads:

  • #^(obj) ⇒ Boolean

    Returns:

    • (Boolean)
  • #^(obj) ⇒ Boolean

    Returns:

    • (Boolean)


1577
1578
1579
1580
1581
# File 'object.c', line 1577

static VALUE
false_xor(VALUE obj, VALUE obj2)
{
    return RTEST(obj2)?Qtrue:Qfalse;
}

#inspectObject

Always returns the string “nil”.



1413
1414
1415
1416
1417
# File 'object.c', line 1413

static VALUE
nil_inspect(VALUE obj)
{
    return rb_usascii_str_new2("nil");
}

#nil?true

Only the object nil responds true to nil?.

Returns:

  • (true)


1590
1591
1592
1593
1594
# File 'object.c', line 1590

static VALUE
rb_true(VALUE obj)
{
    return Qtrue;
}

#rationalize([eps]) ⇒ Object

Returns zero as a rational. The optional argument eps is always ignored.



2136
2137
2138
2139
2140
2141
# File 'rational.c', line 2136

static VALUE
nilclass_rationalize(int argc, VALUE *argv, VALUE self)
{
    rb_check_arity(argc, 0, 1);
    return nilclass_to_r(self);
}

#to_aObject

call-seq:

   nil.to_a    -> []

Always returns an empty array.

   nil.to_a   #=> []


1383
1384
1385
1386
1387
# File 'object.c', line 1383

static VALUE
nil_to_a(VALUE obj)
{
    return rb_ary_new2(0);
}

#to_cObject

Returns zero as a complex.



1685
1686
1687
1688
1689
# File 'complex.c', line 1685

static VALUE
nilclass_to_c(VALUE self)
{
    return rb_complex_new1(INT2FIX(0));
}

#to_f0.0

Always returns zero.

nil.to_f   #=> 0.0

Returns:

  • (0.0)


1353
1354
1355
1356
1357
# File 'object.c', line 1353

static VALUE
nil_to_f(VALUE obj)
{
    return DBL2NUM(0.0);
}

#to_hObject

call-seq:

   nil.to_h    -> {}

Always returns an empty hash.

   nil.to_h   #=> {}


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

static VALUE
nil_to_h(VALUE obj)
{
    return rb_hash_new();
}

#to_i0

Always returns zero.

nil.to_i   #=> 0

Returns:

  • (0)


1338
1339
1340
1341
1342
# File 'object.c', line 1338

static VALUE
nil_to_i(VALUE obj)
{
    return INT2FIX(0);
}

#to_rObject

Returns zero as a rational.



2123
2124
2125
2126
2127
# File 'rational.c', line 2123

static VALUE
nilclass_to_r(VALUE self)
{
    return rb_rational_new1(INT2FIX(0));
}

#to_sObject

Always returns the empty string.



1366
1367
1368
1369
1370
# File 'object.c', line 1366

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.

Overloads:

  • #|(obj) ⇒ Boolean

    Returns:

    • (Boolean)
  • #|(obj) ⇒ Boolean

    Returns:

    • (Boolean)


1558
1559
1560
1561
1562
# File 'object.c', line 1558

static VALUE
false_or(VALUE obj, VALUE obj2)
{
    return RTEST(obj2)?Qtrue:Qfalse;
}