// Common internal utils
pubusecrate::error::*;pubusecrate::utils::{decode_digit, decode_list, encode_char, encode_string};/// Swedish alphabet with `å`, `ä`, `ö`, but without `w`.
////// The alphabet used for encoding and decoding.
////// `len = 28`
pubconstALPHABET:&str="abcdefghijklmnopqrstuvxyzåäö";lazy_static!{/// The length of the alphabet for ease of use.
pubstaticrefALPHABET_LEN:usize=ALPHABET.chars().count();}