Module ushiosan.jvm.utilities
Package ushiosan.jvm.function
Interface UEmptyFunErrSafe.UEmptyFunErrSafe6<T1,T2,T3,T4,T5,T6,E extends Throwable>
- Type Parameters:
T1- first function argumentT2- second function argumentT3- third function argumentT4- fourth function argumentT5- fifth function argumentT6- sixth function argumentE- execution error
- All Superinterfaces:
UEmptyFunErr.UEmptyFunErr6<T1,T2, T3, T4, T5, T6, E>
- Enclosing interface:
- UEmptyFunErrSafe<E extends Throwable>
- 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 UEmptyFunErrSafe.UEmptyFunErrSafe6<T1,T2,T3,T4,T5,T6,E extends Throwable>
extends UEmptyFunErr.UEmptyFunErr6<T1,T2,T3,T4,T5,T6,E>
Representation of a method in Java. Although called a function, it works very similar to a
method, and it is possible to reference one via referencing or lambda expressions.
-
Method Summary
Methods inherited from interface ushiosan.jvm.function.UEmptyFunErr.UEmptyFunErr6
invoke
-
Method Details
-
invokeSafe
Method that invokes the behavior of the function. This method takes the necessary parameters.- Parameters:
a1- first function argumenta2- second function argumenta3- third function argumenta4- fourth function argumenta5- fifth function argumenta6- sixth function argument
-