tools/rc/to_f64.rs
author alfadur
Mon, 12 Feb 2024 01:19:32 +0300
changeset 16015 cd8392e52165
parent 15981 5aed6c0b63e2
permissions -rw-r--r--
fix voting rights

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