module PathMapper::Node::Null::Representation

Public Instance Methods

any?() click to toggle source
# File lib/path_mapper/node/null/representation.rb, line 17
def any?
  false
end
empty?() click to toggle source
# File lib/path_mapper/node/null/representation.rb, line 13
def empty?
  true
end
nil?() click to toggle source
# File lib/path_mapper/node/null/representation.rb, line 9
def nil?
  true
end
to_s() click to toggle source
# File lib/path_mapper/node/null/representation.rb, line 5
def to_s
  ''
end