java.util.function.See: Description
| Interface | Description |
|---|---|
| UBiConsumer<T,U> |
TLDR; IMPLEMENT
void $accept(T arg0, U arg1) throws Throwable USING A LAMBDA; INVOKE void accept(T arg0, U arg1). |
| UBiFunction<T,U,R> |
TLDR; IMPLEMENT
R $apply(T arg0, U arg1) throws Throwable USING A LAMBDA; INVOKE R apply(T arg0, U arg1). |
| UBinaryOperator<T> |
TLDR; IMPLEMENT
T $apply(T arg0, T arg1) throws Throwable USING A LAMBDA; INVOKE T apply(T arg0, T arg1). |
| UBiPredicate<T,U> |
TLDR; IMPLEMENT
boolean $test(T arg0, U arg1) throws Throwable USING A LAMBDA; INVOKE boolean test(T arg0, U arg1). |
| UBooleanSupplier |
TLDR; IMPLEMENT
boolean $getAsBoolean() throws Throwable USING A LAMBDA; INVOKE boolean getAsBoolean(). |
| UConsumer<T> |
TLDR; IMPLEMENT
void $accept(T arg0) throws Throwable USING A LAMBDA; INVOKE void accept(T arg0). |
| UDoubleBinaryOperator |
TLDR; IMPLEMENT
double $applyAsDouble(double arg0, double arg1) throws Throwable USING A LAMBDA; INVOKE double applyAsDouble(double arg0, double arg1). |
| UDoubleConsumer |
TLDR; IMPLEMENT
void $accept(double arg0) throws Throwable USING A LAMBDA; INVOKE void accept(double arg0). |
| UDoubleFunction<R> |
TLDR; IMPLEMENT
R $apply(double arg0) throws Throwable USING A LAMBDA; INVOKE R apply(double arg0). |
| UDoublePredicate |
TLDR; IMPLEMENT
boolean $test(double arg0) throws Throwable USING A LAMBDA; INVOKE boolean test(double arg0). |
| UDoubleSupplier |
TLDR; IMPLEMENT
double $getAsDouble() throws Throwable USING A LAMBDA; INVOKE double getAsDouble(). |
| UDoubleToIntFunction |
TLDR; IMPLEMENT
int $applyAsInt(double arg0) throws Throwable USING A LAMBDA; INVOKE int applyAsInt(double arg0). |
| UDoubleToLongFunction |
TLDR; IMPLEMENT
long $applyAsLong(double arg0) throws Throwable USING A LAMBDA; INVOKE long applyAsLong(double arg0). |
| UDoubleUnaryOperator |
TLDR; IMPLEMENT
double $applyAsDouble(double arg0) throws Throwable USING A LAMBDA; INVOKE double applyAsDouble(double arg0). |
| UFunction<T,R> |
TLDR; IMPLEMENT
R $apply(T arg0) throws Throwable USING A LAMBDA; INVOKE R apply(T arg0). |
| UIntBinaryOperator |
TLDR; IMPLEMENT
int $applyAsInt(int arg0, int arg1) throws Throwable USING A LAMBDA; INVOKE int applyAsInt(int arg0, int arg1). |
| UIntConsumer |
TLDR; IMPLEMENT
void $accept(int arg0) throws Throwable USING A LAMBDA; INVOKE void accept(int arg0). |
| UIntFunction<R> |
TLDR; IMPLEMENT
R $apply(int arg0) throws Throwable USING A LAMBDA; INVOKE R apply(int arg0). |
| UIntPredicate |
TLDR; IMPLEMENT
boolean $test(int arg0) throws Throwable USING A LAMBDA; INVOKE boolean test(int arg0). |
| UIntSupplier |
TLDR; IMPLEMENT
int $getAsInt() throws Throwable USING A LAMBDA; INVOKE int getAsInt(). |
| UIntToDoubleFunction |
TLDR; IMPLEMENT
double $applyAsDouble(int arg0) throws Throwable USING A LAMBDA; INVOKE double applyAsDouble(int arg0). |
| UIntToLongFunction |
TLDR; IMPLEMENT
long $applyAsLong(int arg0) throws Throwable USING A LAMBDA; INVOKE long applyAsLong(int arg0). |
| UIntUnaryOperator |
TLDR; IMPLEMENT
int $applyAsInt(int arg0) throws Throwable USING A LAMBDA; INVOKE int applyAsInt(int arg0). |
| ULongBinaryOperator |
TLDR; IMPLEMENT
long $applyAsLong(long arg0, long arg1) throws Throwable USING A LAMBDA; INVOKE long applyAsLong(long arg0, long arg1). |
| ULongConsumer |
TLDR; IMPLEMENT
void $accept(long arg0) throws Throwable USING A LAMBDA; INVOKE void accept(long arg0). |
| ULongFunction<R> |
TLDR; IMPLEMENT
R $apply(long arg0) throws Throwable USING A LAMBDA; INVOKE R apply(long arg0). |
| ULongPredicate |
TLDR; IMPLEMENT
boolean $test(long arg0) throws Throwable USING A LAMBDA; INVOKE boolean test(long arg0). |
| ULongSupplier |
TLDR; IMPLEMENT
long $getAsLong() throws Throwable USING A LAMBDA; INVOKE long getAsLong(). |
| ULongToDoubleFunction |
TLDR; IMPLEMENT
double $applyAsDouble(long arg0) throws Throwable USING A LAMBDA; INVOKE double applyAsDouble(long arg0). |
| ULongToIntFunction |
TLDR; IMPLEMENT
int $applyAsInt(long arg0) throws Throwable USING A LAMBDA; INVOKE int applyAsInt(long arg0). |
| ULongUnaryOperator |
TLDR; IMPLEMENT
long $applyAsLong(long arg0) throws Throwable USING A LAMBDA; INVOKE long applyAsLong(long arg0). |
| UObjDoubleConsumer<T> |
TLDR; IMPLEMENT
void $accept(T arg0, double arg1) throws Throwable USING A LAMBDA; INVOKE void accept(T arg0, double arg1). |
| UObjIntConsumer<T> |
TLDR; IMPLEMENT
void $accept(T arg0, int arg1) throws Throwable USING A LAMBDA; INVOKE void accept(T arg0, int arg1). |
| UObjLongConsumer<T> |
TLDR; IMPLEMENT
void $accept(T arg0, long arg1) throws Throwable USING A LAMBDA; INVOKE void accept(T arg0, long arg1). |
| UPredicate<T> |
TLDR; IMPLEMENT
boolean $test(T arg0) throws Throwable USING A LAMBDA; INVOKE boolean test(T arg0). |
| USupplier<T> |
TLDR; IMPLEMENT
T $get() throws Throwable USING A LAMBDA; INVOKE T get(). |
| UToDoubleBiFunction<T,U> |
TLDR; IMPLEMENT
double $applyAsDouble(T arg0, U arg1) throws Throwable USING A LAMBDA; INVOKE double applyAsDouble(T arg0, U arg1). |
| UToDoubleFunction<T> |
TLDR; IMPLEMENT
double $applyAsDouble(T arg0) throws Throwable USING A LAMBDA; INVOKE double applyAsDouble(T arg0). |
| UToIntBiFunction<T,U> |
TLDR; IMPLEMENT
int $applyAsInt(T arg0, U arg1) throws Throwable USING A LAMBDA; INVOKE int applyAsInt(T arg0, U arg1). |
| UToIntFunction<T> |
TLDR; IMPLEMENT
int $applyAsInt(T arg0) throws Throwable USING A LAMBDA; INVOKE int applyAsInt(T arg0). |
| UToLongBiFunction<T,U> |
TLDR; IMPLEMENT
long $applyAsLong(T arg0, U arg1) throws Throwable USING A LAMBDA; INVOKE long applyAsLong(T arg0, U arg1). |
| UToLongFunction<T> |
TLDR; IMPLEMENT
long $applyAsLong(T arg0) throws Throwable USING A LAMBDA; INVOKE long applyAsLong(T arg0). |
| UUnaryOperator<T> |
TLDR; IMPLEMENT
T $apply(T arg0) throws Throwable USING A LAMBDA; INVOKE T apply(T arg0). |
java.util.function.