(&self, code: Self::Codeword)
| 87 | |
| 88 | /// Returns whether the `code` is empty (has zero fragments). |
| 89 | #[inline] fn is_code_empty(&self, code: Self::Codeword) -> bool { self.len_of(code) == 0 } |
| 90 | |
| 91 | /// Returns the first fragment of the `code`. |
| 92 | #[inline] fn first_fragment_of(&self, code: Self::Codeword) -> u8 { self.fragment_of(code, 0) } |
no test coverage detected