mismatch
Returns the index of the first element that differs between the two LongArrays, starting at aFromIndex in a and bFromIndex in b, for up to length elements.
If no mismatch is found in the given range, returns -1.
Returns the relative index of the first mismatch between two subranges of the given arrays, or -1 if there is no mismatch.
This function compares up to length elements from a starting at aFromIndex and from b starting at bFromIndex.
Finds the relative index of a mismatch between two arrays starting from the given indexes.
This method does not perform bounds checks. It is the responsibility of the caller to ensure that the indexes and length are valid.
Return
the relative index of a mismatch between the two arrays, or -1 if no mismatch is found.
Parameters
the first array to be tested for a mismatch
the index of the first element (inclusive) in the first array to be compared
the second array to be tested for a mismatch
the index of the first element (inclusive) in the second array to be compared
the number of bytes from each array to check