-
- All Superinterfaces:
Consumers.Arity3<I1,I2,O>
- All Known Subinterfaces:
Computers.Arity2_1<O,I1,I2>,Computers.Arity2_2<I1,O,I2>
- Enclosing class:
- Computers
- 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 Computers.Arity2<I1,I2,O> extends Consumers.Arity3<I1,I2,O>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidaccept(I1 in1, I2 in2, O out)Performs this operation on the given arguments.voidcompute(I1 in1, I2 in2, O out)-
Methods inherited from interface org.scijava.function.Consumers.Arity3
andThen
-
-
-
-
Method Detail
-
accept
default void accept(I1 in1, I2 in2, O out)
Description copied from interface:Consumers.Arity3Performs this operation on the given arguments.- Specified by:
acceptin interfaceConsumers.Arity3<I1,I2,O>- Parameters:
in1- input argument 1.in2- input argument 2.out- input argument 3.
-
-