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

com.moon.core.util.function.BooleanFunction Maven / Gradle / Ivy

package com.moon.core.util.function;

/**
 * @author moonsky
 */
@FunctionalInterface
public interface BooleanFunction {
    /**
     * Applies this function to the given argument.
     *
     * @param value the function argument
     * @return the function result
     */
    R apply(boolean value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy