operator & method

MatchCase<T> operator &(
  1. MatchCase<T> other
)

Implementation

MatchCase<T> operator &(MatchCase<T> other) {
  return (n) => this(n) && other(n);
}