class YARP::Pattern

def combine_and(left, right)

true.
Shortcut for combining two procs into one that returns true if both return
def combine_and(left, right)
  ->(other) { left.call(other) && right.call(other) }
end