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

com.fluxtion.runtime.dataflow.DoubleFlowFunction Maven / Gradle / Ivy

package com.fluxtion.runtime.dataflow;

import java.util.function.DoubleSupplier;

/**
 * A primitive double function step applied to a data flow.
 */
public interface DoubleFlowFunction extends FlowFunction, DoubleSupplier, DoubleFlowSupplier {
    default Double get() {
        return getAsDouble();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy