Files
primitive-collections/primitiveCollections/src/main/java/org/lucares/collections/TripleLongConsumer.java
2019-12-26 15:44:58 +01:00

16 lines
392 B
Java

package org.lucares.collections;
/**
* Consumer for iterating over {@link Sparse2DLongArray}s.
*/
public interface TripleLongConsumer {
/**
* Performs this operation on the given arguments
* @param x the index in the x-dimension
* @param y the index in the y-dimension
* @param value the value at {@code x}×{@code y}
*/
public void apply(long x, long y, long value);
}