The removeRanges method of the IntRanges Class contains the following signatures:
removeRanges(int i, int count, IIntRangeComparator hook)
removeRanges(int i, int count)
Removes ranges specified by index from the IntRange object.
public synchronized void removeRanges(int i, int count, IIntRangeComparator hook);
i | The index of the range to remove. |
count | The number ranges to remove. |
hook | The interface to notify through IIntRangeComparator.shiftRanges that the ranges were deleted. |
Removes ranges specified by index from the IntRange object.
public void removeRanges(int i, int count);
i | The index of the range to remove. |
count | The number ranges to remove. |