macro_rules! brackets { ($($item:expr),*) => { ... }; }
brackets!(a, b, …, z) ⟶ [a, b, …, z]
brackets!(
,
)
[
]
See super::constructors::brackets.