Returns merged array from values.
Returns merged array from values. If "values" contains arrays and simple values, they are all flatened together.
array of merged arrays.
Array(5, Array(4, 5), Array(6, 7), 8) will return Array(5, 4, 5, 6, 7, 8).
(Since version ) see corresponding Javadoc for more information.