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