tools/rc/to_f64.rs
author unC0Rr
Fri, 22 Nov 2024 17:29:30 +0100
branchtransitional_engine
changeset 16040 6c5b3c576fc6
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Add some progress on rust AI

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