The concat() method of Booleans Class in the Guava library is used to concatenate the values of many arrays into a single array. These boolean arrays to be concatenated are specified as parameters to this method.
For example: concat(new boolean[] {a, b}, new boolean[] {}, new boolean[] {c} returns the array {a, b, c}.
Syntax :
public static boolean[] concat(boolean[]... arrays)
Parameter: This method accepts arrays as parameter which is the boolean arrays to be concatenated by this method.
Return Value: This method returns a single boolean array which contains all the specified boolean array values in its original order.
Below programs illustrate the use of concat() method:
Example-1 :
import com.google.common.primitives.Booleans;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
boolean [] arr1 = { true , false , true };
boolean [] arr2 = { false , false , false , true };
boolean [] res = Booleans.concat(arr1, arr2);
System.out.println(Arrays.toString(res));
}
}
|
Output:
[true, false, true, false, false, false, true]
Example-2 :
import com.google.common.primitives.Booleans;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
boolean [] arr1 = { true , false , false };
boolean [] arr2 = { true , true };
boolean [] arr3 = { false , false , false };
boolean [] arr4 = { false , true };
boolean [] res
= Booleans.concat(arr1, arr2, arr3, arr4);
System.out.println(Arrays.toString(res));
}
}
|
Output:
[true, false, false, true, true, false, false, false, false, true]
Reference: https://google.github.io/guava/releases/20.0/api/docs/com/google/common/primitives/Booleans.html#concat-boolean:A…-