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 {
|
2020-06-07 16:19:09 +03:00
|
|
|
if t1.unix == t2.unix && t1.microsecond == t2.microsecond {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-01-05 13:43:34 +03:00
|
|
|
// operator `!=` returns true if provided time is not equal to 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 {
|
|
|
|
return !(t1 == t2)
|
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 {
|
2020-06-07 16:19:09 +03:00
|
|
|
if t1.unix < t2.unix || (t1.unix == t2.unix && t1.microsecond < t2.microsecond) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-01-10 23:05:05 +03:00
|
|
|
// operator `<=` returns true if provided time is less or equal to time
|
2020-12-16 14:10:02 +03:00
|
|
|
[inline]
|
2021-01-10 23:05:05 +03:00
|
|
|
pub fn (t1 Time) <= (t2 Time) bool {
|
2021-01-05 13:43:34 +03:00
|
|
|
return t1 < t2 || t1 == t2
|
2020-06-07 16:19:09 +03:00
|
|
|
}
|
|
|
|
|
2021-01-05 13:43:34 +03:00
|
|
|
// operator `>` returns true if provided time is greater 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 {
|
2020-06-07 16:19:09 +03:00
|
|
|
if t1.unix > t2.unix || (t1.unix == t2.unix && t1.microsecond > t2.microsecond) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-01-10 23:05:05 +03:00
|
|
|
// operator `>=` returns true if provided time is greater or equal to time
|
2020-12-16 14:10:02 +03:00
|
|
|
[inline]
|
2021-01-10 23:05:05 +03:00
|
|
|
pub fn (t1 Time) >= (t2 Time) bool {
|
2021-01-05 13:43:34 +03:00
|
|
|
return t1 > t2 || t1 == t2
|
2020-12-06 17:19:39 +03:00
|
|
|
}
|
2020-12-21 11:28:00 +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 {
|
2020-12-21 11:28:00 +03:00
|
|
|
lhs_micro := lhs.unix * 1000 * 1000 + u64(lhs.microsecond)
|
|
|
|
rhs_micro := rhs.unix * 1000 * 1000 + u64(rhs.microsecond)
|
|
|
|
return (i64(lhs_micro) - i64(rhs_micro)) * microsecond
|
|
|
|
}
|