operator >= method

bool operator >=(
  1. RosTime other
)

Implementation

bool operator >=(RosTime other) =>
    this > other || (secs == other.secs && nsecs == other.nsecs);