I hope that when building Vec through vec! macros, I can expand other arrays and make their elements part of the array, simplifying code writing. The example code is as follows: let a = vec![3, 4]; let b = vec![5, 6]; let c = vec![1, 2, ...a, ...b]; // then c = [1, 2, 3, 4, 5, 6]