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

com.github.tommyettinger.function.IntIntToDoubleBiFunction Maven / Gradle / Ivy

package com.github.tommyettinger.function;

/**
 * Represents an operation on a {@code int}-valued operand and a {@code int}-valued
 * operand that produces a {@code double}-valued result.
 * 
* This is a functional interface whose functional method is {@link #applyAsDouble(int, int)}. */ @FunctionalInterface public interface IntIntToDoubleBiFunction { /** * Applies this function to the given arguments. * * @param first the first function argument * @param second the second function argument * @return the function result */ double applyAsDouble(int first, int second); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy