Package org.eclipse.epsilon.eol.function
Interface CheckedEolBinaryOperator<T>
-
- Type Parameters:
T-
- All Superinterfaces:
java.util.function.BiFunction<T,T,T>,java.util.function.BinaryOperator<T>,CheckedBiFunction<T,T,T,EolRuntimeException>,CheckedBinaryOperator<T,EolRuntimeException>,CheckedEolBiFunction<T,T,T>
- 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 interface CheckedEolBinaryOperator<T> extends CheckedEolBiFunction<T,T,T>, CheckedBinaryOperator<T,EolRuntimeException>
- Since:
- 1.6
- Author:
- Sina Madani
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Tapply(T t, T u)TapplyThrows(T t, T u)
-
-
-
Method Detail
-
applyThrows
T applyThrows(T t, T u) throws EolRuntimeException
- Specified by:
applyThrowsin interfaceCheckedBiFunction<T,T,T,EolRuntimeException>- Specified by:
applyThrowsin interfaceCheckedEolBiFunction<T,T,T>- Throws:
EolRuntimeException
-
apply
default T apply(T t, T u)
- Specified by:
applyin interfacejava.util.function.BiFunction<T,T,T>- Specified by:
applyin interfaceCheckedBiFunction<T,T,T,EolRuntimeException>- Specified by:
applyin interfaceCheckedBinaryOperator<T,EolRuntimeException>- Specified by:
applyin interfaceCheckedEolBiFunction<T,T,T>
-
-