tools/rc/to_f64.rs
author alfadur
Wed, 27 Mar 2024 02:57:44 +0300
changeset 16002 e915ed28726e
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
thread server reference through dispatch to ensure rooms can be auto dropped

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