class Drudge::Parsers::ParseResults::Empty

Public Instance Methods

+(other) click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 174
def +(other)
  other
end
==(other) click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 182
def ==(other)
  Empty === other
end
Also aliased as: eql?
eql?(other)
Alias for: ==
flat_map() click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 170
def flat_map
  self
end
map() click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 166
def map
  self
end
to_a() click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 178
def to_a
  []
end