Helper Methods for Arrays
Methods that are useful when working with arrays. Contains utilities to concatenate arrays, print arrays, and compare arrays.
Example
Concatenate two arrays into a single longer array
ArrayHelper.print(
ArrayHelper.cat(
new String[]{
"one",
"two"
},
new String[]{
"three",
"four"
}
)
);