tools/rc/to_f64.rs
author unC0Rr
Sat, 28 Sep 2024 22:27:13 +0200
changeset 16037 2b4f361e3891
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Wrap chat lines into div

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