Macro hsh::hsh_split

source ·
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");