module Drudge::Parsers::ParseResults::NotSuccess

an unsuccesful parse result

Public Instance Methods

flat_map() click to toggle source

propagate error

# File lib/drudge/parsers/parse_results.rb, line 119
def flat_map
  self
end
flat_map_with_next(&_) click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 123
def flat_map_with_next(&_)
  self
end
map() click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 110
def map
  self
end
map_in_parse_value() click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 114
def map_in_parse_value
  self
end
success?() click to toggle source
# File lib/drudge/parsers/parse_results.rb, line 127
def success?
  false
end