Uses of Interface
org.roaringbitmap.IntConsumer
-
Packages that use IntConsumer Package Description org.roaringbitmap The org.roaringbitmap package provides one class (RoaringBitmap
) that users can rely upon for fast set of integers.org.roaringbitmap.buffer The org.roaringbitmap.buffer package provides two classes (MutableRoaringBitmap
and (ImmutableRoaringBitmap
) that users can rely upon for fast set of integers. -
-
Uses of IntConsumer in org.roaringbitmap
Fields in org.roaringbitmap declared as IntConsumer Modifier and Type Field Description (package private) IntConsumer
IntConsumerRelativeRangeAdapter. absolutePositionConsumer
Methods in org.roaringbitmap with parameters of type IntConsumer Modifier and Type Method Description void
ArrayContainer. forEach(char msb, IntConsumer ic)
void
BitmapContainer. forEach(char msb, IntConsumer ic)
abstract void
Container. forEach(char msb, IntConsumer ic)
Iterate through the values of this container and pass them along to the IntConsumer, using msb as the 16 most significant bits.void
ImmutableBitmapDataProvider. forEach(IntConsumer ic)
Visit all values in the bitmap and pass them to the consumer.void
RoaringBitmap. forEach(IntConsumer ic)
void
RunContainer. forEach(char msb, IntConsumer ic)
void
RoaringBitmap. forEachInRange(int start, int length, IntConsumer ic)
Consume each value present in the range [start, start + length).Constructors in org.roaringbitmap with parameters of type IntConsumer Constructor Description IntConsumerRelativeRangeAdapter(int start, IntConsumer lc)
-
Uses of IntConsumer in org.roaringbitmap.buffer
Methods in org.roaringbitmap.buffer with parameters of type IntConsumer Modifier and Type Method Description void
ImmutableRoaringBitmap. forEach(IntConsumer ic)
void
MappeableArrayContainer. forEach(char msb, IntConsumer ic)
void
MappeableBitmapContainer. forEach(char msb, IntConsumer ic)
abstract void
MappeableContainer. forEach(char msb, IntConsumer ic)
Iterate through the values of this container and pass them along to the IntConsumer, using msb as the 16 most significant bits.void
MappeableRunContainer. forEach(char msb, IntConsumer ic)
-