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