Lines Matching refs:assert_eq
10 assert_eq!(number.is_fast_path::<f32>(), true);
11 assert_eq!(number.is_fast_path::<f64>(), true);
14 assert_eq!(number.is_fast_path::<f32>(), false);
15 assert_eq!(number.is_fast_path::<f64>(), true);
18 assert_eq!(number.is_fast_path::<f32>(), false);
19 assert_eq!(number.is_fast_path::<f64>(), false);
22 assert_eq!(number.is_fast_path::<f32>(), false);
23 assert_eq!(number.is_fast_path::<f64>(), true);
26 assert_eq!(number.is_fast_path::<f32>(), false);
27 assert_eq!(number.is_fast_path::<f64>(), true);
30 assert_eq!(number.is_fast_path::<f32>(), false);
31 assert_eq!(number.is_fast_path::<f64>(), false);
35 assert_eq!(number.is_fast_path::<f32>(), false);
36 assert_eq!(number.is_fast_path::<f64>(), true);
39 assert_eq!(number.is_fast_path::<f32>(), false);
40 assert_eq!(number.is_fast_path::<f64>(), false);
43 assert_eq!(number.is_fast_path::<f32>(), false);
44 assert_eq!(number.is_fast_path::<f64>(), true);
47 assert_eq!(number.is_fast_path::<f32>(), false);
48 assert_eq!(number.is_fast_path::<f64>(), false);
58 assert_eq!(number.try_fast_path::<f32>(), Some(1.2345));
59 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345));
62 assert_eq!(number.try_fast_path::<f32>(), Some(1.2345e-6));
63 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e-6));
66 assert_eq!(number.try_fast_path::<f32>(), None);
67 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e-16));
70 assert_eq!(number.try_fast_path::<f32>(), None);
71 assert_eq!(number.try_fast_path::<f64>(), None);
74 assert_eq!(number.try_fast_path::<f32>(), Some(1.2345e16));
75 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e16));
78 assert_eq!(number.try_fast_path::<f32>(), None);
79 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e29));
82 assert_eq!(number.try_fast_path::<f32>(), None);
83 assert_eq!(number.try_fast_path::<f64>(), Some(1.2345e36));
86 assert_eq!(number.try_fast_path::<f32>(), None);
87 assert_eq!(number.try_fast_path::<f64>(), None);