[][src]Macro obfstr::wide

macro_rules! wide {
    ($s:literal) => { ... };
}

Wide string literal, returns an array of words.

The type of the returned literal is &'static [u16; LEN].

let expected = &['W' as u16, 'i' as u16, 'd' as u16, 'e' as u16];
assert_eq!(obfstr::wide!("Wide"), expected);