Java Guava | Chars.concat() method with Examples
The concat() method of Chars Class in the Guava library is used to concatenate the values of many arrays into a single array. These char arrays to be concatenated are specified as parameters to this method. For example: concat(new char[] {a, b}, new char[] {}, new char[] {c} returns the array {a, b,