public interface IntConsumer
bitmap.forEach(new IntConsumer() {
public void accept(int value) {
// do something here
}});
}
| Modifier and Type | Method and Description |
|---|---|
void |
accept(int value)
Receives the integer
|
Copyright © 2017. All rights reserved.