operator >> method

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

Implementation

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