io.deephaven.engine.primitive.function.FloatToDoubleFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-primitive Show documentation
Show all versions of deephaven-engine-primitive Show documentation
Primitives: Expanding upon java.util.PrimitiveIterator and java.util.function.* for {byte, char, float, short}
/*
* ---------------------------------------------------------------------------------------------------------------------
* AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY - for any changes edit CharToIntFunction and regenerate
* ---------------------------------------------------------------------------------------------------------------------
*/
package io.deephaven.engine.primitive.function;
/**
* Functional interface to apply a function to a single {@code float} input and produce a single {@code double} result.
*/
@FunctionalInterface
public interface FloatToDoubleFunction {
/**
* Apply this function to {@code value}.
*
* @param value The {@code float} input
* @return The {@code double} result
*/
double applyAsDouble(float value);
}