operator > method

MatchCase<T> operator >(
  1. bool g
)

Implementation

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