运算符 & 方法

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

此布尔值与other的逻辑“与”操作。

如果此值和other都为true,则返回true,否则返回false

实现

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