
net.mintern.functions.nullary.checked.NilToBoolE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-nullary Show documentation
Show all versions of functions-nullary Show documentation
Provides functional interfaces for all no-argument functions
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