This commit is contained in:
Dominik Werder
2025-03-05 15:22:48 +01:00
parent 048a50f772
commit 302bc811fd

View File

@@ -1910,6 +1910,10 @@ impl DtMs {
pub const fn to_i64(&self) -> i64 {
self.0 as i64
}
pub const fn mul(self, x: u64) -> DtMs {
Self(self.0 * x)
}
}
impl fmt::Display for DtMs {