class Prism::Pattern
def combine_or(left, right)
Shortcut for combining two procs into one that returns true if either
def combine_or(left, right) ->(other) { left.call(other) || right.call(other) } end
def combine_or(left, right) ->(other) { left.call(other) || right.call(other) } end