Interface RelativeRangeConsumer

All Known Implementing Classes:
IntConsumerRelativeRangeAdapter, LongConsumerRelativeRangeAdapter

public interface RelativeRangeConsumer
A consumer interface to process ranges of value contained in a bitmap using relative offsets.

All positions are relative offsets to a start position given as an argument to methods that expect a range consumer. In other words, the bitmap global index for every position in the methods provided by this interface is start + relativePos. (For 64-bit bitmaps start may be a long and so would thus start + relativePos.)

A "present" value at a global position pos is one where bitmap.contains(pos) == true. An "absent" value at a global position pos is one where bitmap.contains(pos) == false.