操作符 ^ 方法

  1. @Since("2.1")
bool operator ^(
  1. bool other
)

此值与 other 的逻辑排他异或。

返回此值与 other 是否既不是都为 true 也不是都为 false

实现

@Since("2.1")
bool operator ^(bool other) => !other == this;