com.annimon.stream.function.BooleanFunction Maven / Gradle / Ivy
The newest version!
package com.annimon.stream.function;
/**
* Represents a function which produces result from {@code boolean}-valued input argument.
*
* @param the type of the result of the function
*
* @since 1.1.8
* @see Function
*/
@FunctionalInterface
public interface BooleanFunction {
/**
* Applies this function to the given argument.
*
* @param value an argument
* @return the function result
*/
R apply(boolean value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy