Package net.hydromatic.morel.util
Interface Pair.PairWithOrdinalConsumer<K,V>
-
- Type Parameters:
K- Key typeV- Value type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface Pair.PairWithOrdinalConsumer<K,V>Represents an operation that accepts two input arguments and an ordinal, and returns no result.This is a specialization of
Consumer, similar toBiConsumer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(int ordinal, K k, V v)Performs this operation on the given arguments.
-