class YARP::Pattern
def combine_and(left, right)
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
def combine_and(left, right) ->(other) { left.call(other) && right.call(other) } end