tools/rc/to_f64.rs
author unC0Rr
Mon, 20 May 2024 14:58:30 +0200
changeset 16016 4933920eba89
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Implement key bindings

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