[][src]Function is::is_f64s

pub fn is_f64s<V: Any + ?Sized>(_: &V) -> bool

Checks if 'static value is of type f64

Examples

assert_eq!(is_f64s(&42f64), true);
assert_eq!(is_f64s(&42f32), false);