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

com.annimon.stream.function.IntToDoubleFunction Maven / Gradle / Ivy

The newest version!
package com.annimon.stream.function;

/**
 * Represents a function which produces an {@code double}-valued result from input argument.
 *
 * @since 1.1.4
 * @see Function
 */
public interface IntToDoubleFunction {

    /**
     * Applies this function to the given argument.
     *
     * @param value  an argument
     * @return the function result
     */
    double applyAsDouble(int value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy