module Algebrick::MatcherDelegations

Public Instance Methods

!() click to toggle source
# File lib/algebrick/matcher_delegations.rb, line 29
def !
  !to_m
end
&(other) click to toggle source
# File lib/algebrick/matcher_delegations.rb, line 21
def &(other)
  to_m & other
end
>(block) click to toggle source
# File lib/algebrick/matcher_delegations.rb, line 41
def >(block)
  to_m > block
end
>>(block) click to toggle source
# File lib/algebrick/matcher_delegations.rb, line 37
def >>(block)
  to_m >> block
end
case(&block) click to toggle source
# File lib/algebrick/matcher_delegations.rb, line 33
def case(&block)
  to_m.case &block
end
|(other) click to toggle source
# File lib/algebrick/matcher_delegations.rb, line 25
def |(other)
  to_m | other
end
~() click to toggle source
# File lib/algebrick/matcher_delegations.rb, line 17
def ~
  ~to_m
end