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