operator < method

bool operator <(
  1. Angle other
)

Whether this Angle is smaller than other.

Implementation

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