com.github.tommyettinger.function.LongFloatToFloatBiFunction Maven / Gradle / Ivy
package com.github.tommyettinger.function;
/**
* Represents an operation on a {@code long}-valued operand and a {@code float}-valued
* operand that produces a {@code float}-valued result.
*
* This is a functional interface whose functional method is {@link #applyAsFloat(long, float)}.
*/
@FunctionalInterface
public interface LongFloatToFloatBiFunction {
/**
* Applies this function to the given arguments.
*
* @param first the first function argument
* @param second the second function argument
* @return the function result
*/
float applyAsFloat(long first, float second);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy