| 46 | declare!(UNICODE16, 65535); |
| 47 | |
| 48 | pub struct Alphabet { |
| 49 | alphabet: Vec<char>, |
| 50 | inverse: Vec<i32>, |
| 51 | radix: usize, |
| 52 | } |
| 53 | |
| 54 | impl TryFrom<&str> for Alphabet { |
| 55 | type Error = String; |
nothing calls this directly
no outgoing calls
no test coverage detected