Macro str_to_chars

Source
macro_rules! str_to_chars {
    ($st:expr) => { ... };
}
Expand description

Converts a string slice to a vector of characters.

§Usage

use suiron::*;

let city = str_to_chars!("渋谷");
let n = city.len();  // n == 2