操作符 | 方法

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

此对象与 other 的逻辑析取运算(“包含或”)。

当此对象或 other 至少一个为 true 时,返回 true,否则返回 false

实现

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