use of suite.primitive.LngIntSource in project suite by stupidsing.
the class LngIntMap method forEach.
public void forEach(LngIntSink sink) {
LngIntPair pair = LngIntPair.of((long) 0, (int) 0);
LngIntSource source = source_();
while (source.source2(pair)) sink.sink2(pair.t0, pair.t1);
}
Aggregations