class Prism::Pattern

def combine_or(left, right)

returns true.
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