macro_rules! hsh_split {
($s:expr) => { ... };
}
Expand description
This macro splits the given string into a vector of strings. The string is split on whitespace characters.
ยงExample
extern crate hsh;
use hsh::{ hsh_split };
let split = hsh_split!("Hello world");