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

net.mintern.functions.nullary.checked.NilToBoolE Maven / Gradle / Ivy

The newest version!
package net.mintern.functions.nullary.checked;

/**
 * An operation of type {@code () -> boolean}.
 *
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface NilToBoolE {

    /**
     * Performs this operation.
     *
     * @return the result of the operation
     * @throws E if the operation cannot be completed
     */
    boolean call() throws E;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy