Module net.luis.utils
Package net.luis.utils.function
package net.luis.utils.function
-
ClassDescriptionUtility class for the functional interfaces in the
java.util.function
andnet.luis.utils.function.throwable
packages.QuadConsumer<T,U, V, W> Functional interface that takes four arguments and consumes them.
TheFunctionalInterface
method isQuadConsumer.accept(Object, Object, Object, Object)
.QuadFunction<T,U, V, W, R> Functional interface that takes four arguments and returns a value.
TheFunctionalInterface
method isQuadFunction.apply(Object, Object, Object, Object)
.TriConsumer<T,U, V> Functional interface that takes three arguments and consumes them.
TheFunctionalInterface
method isTriConsumer.accept(Object, Object, Object)
.TriFunction<T,U, V, R> Functional interface that takes three arguments and returns a value.
TheFunctionalInterface
method isTriFunction.apply(Object, Object, Object)
.