operator < method

bool operator <(
  1. RosTime other
)

Implementation

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