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

marcel.lang.util.function.ToFloatFunction Maven / Gradle / Ivy

package marcel.lang.util.function;

@FunctionalInterface
public interface ToFloatFunction {

    /**
     * Applies this function to the given argument.
     *
     * @param value the function argument
     * @return the function result
     */
    float applyAsFloat(T value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy