operator ^ method

bool operator ^(
  1. bool other
)

Performs a logical XOR operation between the Rx value and other.

Implementation

bool operator ^(bool other) => !other == value;