tools/rc/to_f64.rs
author unC0Rr
Tue, 05 Sep 2023 17:01:46 +0200
branchtransitional_engine
changeset 16007 96d0e6149d3d
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Fix type

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