pub fn is_alphanumeric_char(c: char) -> bool
Expand description

Check if char is alphanumeric (latin)

Returns true for latin alphabet and numbers: a-z, A-Z, 0-9

Returns false for other characters