org.inxar.syntacs.util
Interface BinaryIntFunction
- public interface BinaryIntFunction
The BinaryIntFunction
is a mapping from an
int
tuple to an int
value.
Method Summary |
int |
get(int x,
int y)
Returns the value mapped to the given (x, y) key combination. |
void |
put(int x,
int y,
int value)
Sets the given value to the given tuple. |
get
public int get(int x,
int y)
- Returns the value mapped to the given (x, y) key combination.
put
public void put(int x,
int y,
int value)
- Sets the given value to the given tuple.