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}
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
// ****** AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY
// ****** Edit FloatToIntFunction and run "./gradlew replicatePrimitiveInterfaces" to regenerate
//
// @formatter:off
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);
}