class Myco::VoidClass

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/myco/bootstrap/void.rb, line 4
def self.new
  @singleton ||= super
end

Public Instance Methods

false?() click to toggle source
# File lib/myco/bootstrap/void.rb, line 16
def false?
  true
end
hash() click to toggle source
# File lib/myco/bootstrap/void.rb, line 28
def hash
  nil.hash
end
inspect() click to toggle source
# File lib/myco/bootstrap/void.rb, line 8
def inspect
  "void"
end
method_missing(*args) click to toggle source
# File lib/myco/bootstrap/void.rb, line 24
def method_missing *args
  self
end
to_s() click to toggle source
# File lib/myco/bootstrap/void.rb, line 12
def to_s
  ""
end
void?() click to toggle source
# File lib/myco/bootstrap/void.rb, line 20
def void?
  true
end