| 4 | /// An Hex representation of the sRGB colour space. |
| 5 | #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] |
| 6 | pub struct Hex(u32); |
| 7 | |
| 8 | const fn is_shorthand_byte(byte: u8) -> bool { |
| 9 | (byte >> 4) == (byte & 0xF) |
no outgoing calls
no test coverage detected