Interface ThrowingFunction2<A,B,R,T extends Throwable>
- Type Parameters:
A- The 1st input argument type for the functionB- The 2nd input argument type for the functionR- The output result type for the functionT- The type ofThrowablethrown by the function
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A better version of Java's
BiFunction interface that
allows for the functions to throw whatever Throwable is
specified.- Version:
- 0.1-Alpha-SNAPSHOT
- Author:
- Logan Ferree (Tadukoo)
-
Method Summary
Modifier and TypeMethodDescriptiondefault <S> ThrowingFunction2<A,B, S, T> andThen(ThrowingFunction<? super R, ? extends S, ? extends T> after) Creates a ThrowingFunction2 that runs this ThrowingFunction2 and puts the result into the givenThrowingFunction.Takes two arguments and returns a result.
-
Method Details
-
apply
Takes two arguments and returns a result.- Parameters:
a- The 1st argumentb- The 2nd argument- Returns:
- R result
- Throws:
T- Determined by the function, not required
-
andThen
default <S> ThrowingFunction2<A,B, andThenS, T> (ThrowingFunction<? super R, ? extends S, ? extends T> after) Creates a ThrowingFunction2 that runs this ThrowingFunction2 and puts the result into the givenThrowingFunction.- Type Parameters:
S- The output type of theThrowingFunction- Parameters:
after- AThrowingFunctionto put the result of this ThrowingFunction2 into- Returns:
- The ThrowingFunction2 made from composing this one and the given
ThrowingFunction
-