Package org.apache.calcite.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.
Represents an operation that accepts two input arguments and an ordinal,
and returns no result.
This is a specialization of Consumer
,
similar to BiConsumer
.
-
Method Summary
-
Method Details
-
accept
Performs this operation on the given arguments.- Parameters:
ordinal
- Ordinalk
- the first input argumentv
- the second input argument
-