macro_rules! hsh_contains {
($s:expr, $sub:expr) => { ... };
}
Expand description
This macro checks if the given string contains the given substring.
ยงExample
extern crate hsh;
use hsh::{ hsh_contains };
let contains = hsh_contains!("Hello world", "world");