Package org.tensorics.core.function
Interface DiscreteFunctionBuilder<X,Y>
-
- Type Parameters:
X- the type of the values along the X-axisY- the type of the values along the Y-axis
- All Known Implementing Classes:
MapBackedDiscreteFunction.Builder
public interface DiscreteFunctionBuilder<X,Y>A builder for discrete functions. It provides methods to easily buildDiscreteFunctions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiscreteFunction<X,Y>build()DiscreteFunctionBuilder<X,Y>put(X key, Y value)
-
-
-
Method Detail
-
put
DiscreteFunctionBuilder<X,Y> put(X key, Y value)
-
build
DiscreteFunction<X,Y> build()
-
-