pub fn max_alpha(chars: u8) -> u64Expand description
Returns the maximum int that can be represented with chars alphabetic
characters
use letter_sequence::sequence::renderer;
assert_eq!( renderer::max_alpha(1u8), 25 );
assert_eq!( renderer::max_alpha(2u8), 26u64.pow(2) + 25 );