operator <= method

bool operator <=(
  1. Angle other
)

Whether this Angle is smaller than or equal to other.

Implementation

bool operator <=(Angle other) => radians <= other.radians;