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