package saker.util.function
Functional interface similar to Predicate, but takes 3 arguments instead of 1.
TThe type of the first argument.
UThe type of the second argument.
VThe type of the third argument.
public boolean | test( Tests if the arguments should be accepted in the context of the caller operation. |
Tests if the arguments should be accepted in the context of the caller operation.
tThe first argument.
uThe second argument.
vThe third argument.
true
to accept the arguments.