operator ^ method

Flags<T> operator ^(
  1. Flags<T> other
)

Return a set of flags that has all the flags set in this or in other but not in both.

Implementation

Flags<T> operator ^(Flags<T> other) => Flags(value ^ other.value);