macro_rules! product {
    [$($elems:expr),*$(,)?] => { ... };
}
Expand description

Constructs a product value from a list of fields with syntax product![v1, v2, ...].

Repeat notation from vec![x; n] is not supported.