macro_rules! array { ($($x:expr),* $(,)?) => { ... }; }
Construct a CBOR array from a list of expressions.
Each element is converted into a Value.
Value
let v = array![1, "hello", true]; assert!(v.data_type().is_array());