[][src]Macro tb::array_from

macro_rules! array_from {
    ($($item:expr),* $(,)?) => { ... };
}

Combines the array literal with .into().

Examples

use tb::array_from;
let a: &[String] = &array_from!["a", "b", "c", "d"];