neq<T> function

MatchFn<T> neq<T>(
  1. T value
)

Implementation

MatchFn<T> neq<T>(T value) {
  return (n) => n != value;
}