macro_rules! str_to_chars { ($st:expr) => { ... }; }
Converts a string slice to a vector of characters.
use suiron::*; let city = str_to_chars!("渋谷"); let n = city.len(); // n == 2