isAfter method

bool isAfter(
  1. GpsTime other
)

Returns true if this is after other.

Implementation

bool isAfter(GpsTime other) {
  return secondsSinceEpoch > other.secondsSinceEpoch;
}