date :: Time :: time_eq
private fun time_eq(other: Time): Bool do return hour * 3600 + minute * 60 + second == other.hour * 3600 + other.minute * 60 + other.second end