isBefore method

bool isBefore(
  1. GpsTime other
)

Returns true if this is before other.

Implementation

bool isBefore(GpsTime other) {
  return secondsSinceEpoch < other.secondsSinceEpoch;
}