Split the provided array on the last pattern instance, and return the resultant head and tail. The pattern is excluded from the two segments.
Where a segment is not found, head will be null and the return value will be the original array.
See Implementation
Split the provided array on the last pattern instance, and return the resultant head and tail. The pattern is excluded from the two segments.
Where a segment is not found, head will be null and the return value will be the original array.