Maximum value of a digit
(&self)
| 51 | |
| 52 | /// Maximum value of a digit |
| 53 | pub const fn max_digit(&self) -> u32 { |
| 54 | (1 << self.log2_base) - 1 |
| 55 | } |
| 56 | |
| 57 | /// Maximum byte length of supported messages. |
| 58 | pub const fn message_byte_len(&self) -> u32 { |
no outgoing calls
no test coverage detected