operator <= method

bool operator <=(
  1. Precedence other
)

Returns true if this Precedence is lower or equal to other.

Implementation

bool operator <=(Precedence other) => compareTo(other) <= 0;