This method of the PermissionUtils Class copies two arrays of IntRanges into a new array. The elements are copied using IntRanges.copy.
public static IntRanges[] combineArraysOfIntRanges(IntRanges[] r1, IntRanges[] r2);
Returns a new array containing copies of the elements of r1, followed by copies of the elements of r2.
r1 | The first array of IntRanges, or null. |
r2 | The second array of IntRanges, or null. |