Module coneforest.psylla
Package coneforest.psylla.runtime
Interface ContextAction.TriFunction<T1 extends PsyObject,T2 extends PsyObject,T3 extends PsyObject>
- Type Parameters:
T1
- the type of the first input to the function.T2
- the type of the second input to the function.T3
- the type of the third input to the function.
- Enclosing interface:
ContextAction
- 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 ContextAction.TriFunction<T1 extends PsyObject,T2 extends PsyObject,T3 extends PsyObject>
Represents a function that accepts three arguments and produces a result.
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments.- Parameters:
o1
- the first function argument.o2
- the second function argument.o3
- the third function argument.- Returns:
- the function result.
- Throws:
PsyErrorException
- when an error occurs during operation.
-