tools/rc/to_f64.rs
author Vekhir
Sun, 11 Feb 2024 20:33:15 +0100
changeset 15985 e42d1819b150
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Revive cabal build of the game server

pub fn to_f64<T: Into<f64>>(v: T) -> f64 {
    v.into()
}