Package org.roaringbitmap.longlong
Interface LongConsumer
-
public interface LongConsumerAn LongConsumer receives the long values contained in a data structure. Each value is visited once. Usage:bitmap.forEach(new LongConsumer() { public void accept(long value) { // do something here }});}
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(long value)Receives the long
-