Lines Matching refs:f64
11 assert_eq!(number.is_fast_path::<f64>(), true);
15 assert_eq!(number.is_fast_path::<f64>(), true);
19 assert_eq!(number.is_fast_path::<f64>(), false);
23 assert_eq!(number.is_fast_path::<f64>(), true);
27 assert_eq!(number.is_fast_path::<f64>(), true);
31 assert_eq!(number.is_fast_path::<f64>(), false);
36 assert_eq!(number.is_fast_path::<f64>(), true);
40 assert_eq!(number.is_fast_path::<f64>(), false);
44 assert_eq!(number.is_fast_path::<f64>(), true);
48 assert_eq!(number.is_fast_path::<f64>(), false);
59 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345));
63 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e-6));
67 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e-16));
71 assert_eq!(number.try_fast_path::<f64>(), None);
75 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e16));
79 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e29));
83 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e36));
87 assert_eq!(number.try_fast_path::<f64>(), None);