As an option for short array, in addition to ``` int h_buffer[] = {23, 34, 18, 99, 34}; array A(4, h_buffer); ``` can we get ``` array A(4, {23, 34, 18, 99, 34}); ``` which will allocate the memory and initialize it with values from initializer list.