macro_rules! array_from { ($($item:expr),* $(,)?) => { ... }; }
Combines the array literal with .into().
.into()
use tb::array_from; let a: &[String] = &array_from!["a", "b", "c", "d"];