neureka.fluent.building.states.To Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neureka Show documentation
Show all versions of neureka Show documentation
A platform independent tensor library written in Java.
The newest version!
package neureka.fluent.building.states;
import neureka.Tensor;
/**
* This step in the call transition graph of the fluent builder API is a followup call
* from the {@link IterByOrIterFromOrAll#andFillFrom(Object)} method which
* expects a range to be specified whose values will be used to populate the {@link Tensor} instance.
* This method allows one to set the end point of the range whose start has previously between set
* in the {@link IterByOrIterFromOrAll#andFillFrom(Object)} method...
*
* @param The type parameter of the second and last range index.
*/
public interface To {
/**
* This step in the call transition graph of the fluent builder API is a followup call
* from the {@link IterByOrIterFromOrAll#andFillFrom(Object)} method which
* expects a range to be specified whose values will be used to populate the {@link Tensor} instance.
* This method allows one to set the end point of the range whose start has previously between set
* in the {@link IterByOrIterFromOrAll#andFillFrom(Object)} method...
*
* @param index The end point of the range previously specified in {@link IterByOrIterFromOrAll#andFillFrom(Object)}.
* @return The last step in the call transition graph of the fluent builder API for building range based {@link Tensor} instances.
*/
Step to( V index );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy