Class: LX::NilClass
- Inherits:
-
Object
- Object
- LX::NilClass
- Defined in:
- lib/lx.rb
Instance Method Summary collapse
-
#has_content? ⇒ Boolean
Always returns false.
-
#hascontent? ⇒ Boolean
Always returns false.
-
#initialize(obj) ⇒ NilClass
constructor
A new instance of NilClass.
-
#no_content? ⇒ Boolean
Always returns true.
-
#nocontent? ⇒ Boolean
Always returns true.
Constructor Details
#initialize(obj) ⇒ NilClass
Returns a new instance of NilClass.
522 523 |
# File 'lib/lx.rb', line 522 def initialize(obj) end |
Instance Method Details
#has_content? ⇒ Boolean
Always returns false.
531 532 533 |
# File 'lib/lx.rb', line 531 def has_content? return false end |
#hascontent? ⇒ Boolean
Always returns false.
526 527 528 |
# File 'lib/lx.rb', line 526 def hascontent? return false end |
#no_content? ⇒ Boolean
Always returns true.
541 542 543 |
# File 'lib/lx.rb', line 541 def no_content? return true end |
#nocontent? ⇒ Boolean
Always returns true.
536 537 538 |
# File 'lib/lx.rb', line 536 def nocontent? return true end |