tools/rc/to_f64.rs
author unC0Rr
Wed, 18 Sep 2024 14:10:51 +0200
branchtransitional_engine
changeset 16036 7b8d96fc8799
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Remove old code

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