2020-06-07 16:19:09 +03:00
|
|
|
module time
|
|
|
|
|
2021-01-05 13:43:34 +03:00
|
|
|
// operator `==` returns true if provided time is equal to time
|
2020-06-10 12:14:55 +03:00
|
|
|
[inline]
|
2021-01-05 13:43:34 +03:00
|
|
|
pub fn (t1 Time) == (t2 Time) bool {
|
2021-03-04 01:56:14 +03:00
|
|
|
return t1.unix == t2.unix && t1.microsecond == t2.microsecond
|
2020-06-07 16:19:09 +03:00
|
|
|
}
|
|
|
|
|
2021-01-05 13:43:34 +03:00
|
|
|
// operator `<` returns true if provided time is less than time
|
2020-12-16 14:10:02 +03:00
|
|
|
[inline]
|
2021-01-05 13:43:34 +03:00
|
|
|
pub fn (t1 Time) < (t2 Time) bool {
|
2021-03-04 01:56:14 +03:00
|
|
|
return t1.unix < t2.unix || (t1.unix == t2.unix && t1.microsecond < t2.microsecond)
|
2020-06-07 16:19:09 +03:00
|
|
|
}
|
|
|
|
|
2021-01-13 17:30:54 +03:00
|
|
|
// Time subtract using operator overloading.
|
2020-12-21 11:28:00 +03:00
|
|
|
[inline]
|
2020-12-21 22:20:00 +03:00
|
|
|
pub fn (lhs Time) - (rhs Time) Duration {
|
2021-08-04 13:12:02 +03:00
|
|
|
lhs_micro := lhs.unix * 1_000_000 + lhs.microsecond
|
|
|
|
rhs_micro := rhs.unix * 1_000_000 + rhs.microsecond
|
|
|
|
return (lhs_micro - rhs_micro) * microsecond
|
2020-12-21 11:28:00 +03:00
|
|
|
}
|