class Nothing

Public Instance Methods

+@() click to toggle source
# File lib/mayhaps.rb, line 46
def +@
  nil
end
inspect() click to toggle source
# File lib/mayhaps.rb, line 54
def inspect
  '#<Nothing>'
end
method_missing(*args) click to toggle source
# File lib/mayhaps.rb, line 50
def method_missing(*args)
  self
end