All Downloads are FREE. Search and download functionalities are using the official Maven repository.

functionalj.function.IntDoublePredicate Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
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);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy