| 2 | |
| 3 | #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)] |
| 4 | pub(crate) enum Int { |
| 5 | /// 8-bit int. |
| 6 | I8 = 8, |
| 7 | /// 16-bit int. |
| 8 | I16 = 16, |
| 9 | /// 32-bit int. |
| 10 | I32 = 32, |
| 11 | /// 64-bit int. |
| 12 | I64 = 64, |
| 13 | /// 128-bit int. |
| 14 | I128 = 128, |
| 15 | } |
| 16 | |
| 17 | /// This provides an iterator through all of the supported int variants. |
| 18 | pub(crate) struct IntIterator { |
no outgoing calls
no test coverage detected