| 43 | |
| 44 | #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)] |
| 45 | pub(crate) enum Float { |
| 46 | F16 = 16, |
| 47 | F32 = 32, |
| 48 | F64 = 64, |
| 49 | F128 = 128, |
| 50 | } |
| 51 | |
| 52 | /// Iterator through the variants of the Float enum. |
| 53 | pub(crate) struct FloatIterator { |
no outgoing calls
no test coverage detected