operator - method

Filter<CTX> operator -(
  1. Filter<CTX> other
)

Creates a filter that matches this AND not the other.

The resulting filter matches when this filter doesn't match.

Implementation

Filter<CTX> operator -(Filter<CTX> other) => and(-other);