14 std::strong_ordering operator<=>(
const Timer &rhs)
const {
15 if (
auto cmp = min <=> rhs.min; cmp != 0) {
19 if (
auto cmp = sec <=> rhs.sec; cmp != 0) {
27 return valid <=> rhs.valid;
30 bool operator==(
const Timer &rhs)
const =
default;
31 bool operator!=(
const Timer &rhs)
const =
default;
44 s16 newSec = addSec + sec - rhs.sec;
50 s16 newMin = addMin + min - rhs.min;
57 return Timer(newMin, newSec, newMs);
60 Timer operator+(f32 ms)
const {
64 s16 newMs =
static_cast<s16
>(ms +
static_cast<f32
>(
mil));
70 s16 newSec = addSec + sec;
76 s16 newMin = addMin + min;
83 return Timer(newMin, newSec, newMs);