Class: NilClass
- Defined in:
- opal/opal/corelib/nil.rb,
opal/opal/corelib/marshal/write_buffer.rb
Instance Method Summary collapse
- #! ⇒ Object
- #&(other) ⇒ Object
- #==(other) ⇒ Object
- #^(other) ⇒ Object
- #__marshal__(buffer) ⇒ Object
- #clone ⇒ Object
- #dup ⇒ Object
- #inspect ⇒ Object
- #instance_variables ⇒ Object
- #nil? ⇒ Boolean
- #rationalize(*args) ⇒ Object
- #singleton_class ⇒ Object
- #to_a ⇒ Object
- #to_c ⇒ Object
- #to_h ⇒ Object
- #to_i ⇒ Object (also: #to_f)
- #to_r ⇒ Object
- #to_s ⇒ Object
- #|(other) ⇒ Object
Instance Method Details
#! ⇒ Object
4 5 6 |
# File 'opal/opal/corelib/nil.rb', line 4 def ! true end |
#&(other) ⇒ Object
8 9 10 |
# File 'opal/opal/corelib/nil.rb', line 8 def &(other) false end |
#==(other) ⇒ Object
20 21 22 |
# File 'opal/opal/corelib/nil.rb', line 20 def ==(other) `other === nil` end |
#^(other) ⇒ Object
16 17 18 |
# File 'opal/opal/corelib/nil.rb', line 16 def ^(other) `other !== false && other !== nil` end |
#__marshal__(buffer) ⇒ Object
2 3 4 |
# File 'opal/opal/corelib/marshal/write_buffer.rb', line 2 def __marshal__(buffer) buffer.append('0') end |
#clone ⇒ Object
28 29 30 |
# File 'opal/opal/corelib/nil.rb', line 28 def clone raise TypeError, "can't clone #{self.class}" end |
#dup ⇒ Object
24 25 26 |
# File 'opal/opal/corelib/nil.rb', line 24 def dup raise TypeError, "can't dup #{self.class}" end |
#inspect ⇒ Object
32 33 34 |
# File 'opal/opal/corelib/nil.rb', line 32 def inspect 'nil' end |
#instance_variables ⇒ Object
75 76 77 |
# File 'opal/opal/corelib/nil.rb', line 75 def instance_variables [] end |
#rationalize(*args) ⇒ Object
66 67 68 69 |
# File 'opal/opal/corelib/nil.rb', line 66 def rationalize(*args) raise ArgumentError if args.length > 1 Rational(0, 1) end |
#singleton_class ⇒ Object
40 41 42 |
# File 'opal/opal/corelib/nil.rb', line 40 def singleton_class NilClass end |
#to_a ⇒ Object
44 45 46 |
# File 'opal/opal/corelib/nil.rb', line 44 def to_a [] end |
#to_h ⇒ Object
48 49 50 |
# File 'opal/opal/corelib/nil.rb', line 48 def to_h `Opal.hash()` end |
#to_i ⇒ Object Also known as: to_f
52 53 54 |
# File 'opal/opal/corelib/nil.rb', line 52 def to_i 0 end |
#|(other) ⇒ Object
12 13 14 |
# File 'opal/opal/corelib/nil.rb', line 12 def |(other) `other !== false && other !== nil` end |