functionalj.function.IntDoublePredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalj-core Show documentation
Show all versions of functionalj-core Show documentation
The module for FunctionalJ Core.
package functionalj.function;
import java.util.function.BiPredicate;
@FunctionalInterface
public interface IntDoublePredicate extends Func2, BiPredicate {
public boolean testIntegerDoubleUnsafe(int input1, double input2) throws Exception;
@Override
public default boolean test(Integer input1, Double input2) {
return apply(input1, input2);
}
public default boolean testIntegerDouble(int input1, double input2) {
return apply(input1, input2);
}
public default Boolean applyUnsafe(Integer input1, Double input2) throws Exception {
return testIntegerDoubleUnsafe(input1, input2);
}
}