operator >= method

bool operator >=(
  1. Angle other
)

Whether this Angle is greater than or equal to other.

Implementation

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