
com.pippsford.stencil.value.Indexable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stencil Show documentation
Show all versions of stencil Show documentation
Stencil templating system
The newest version!
package com.pippsford.stencil.value;
import java.util.function.IntFunction;
/**
* An indexable object of size N
maps the numbers zero through to N-1
to objects.
*
* @author Simon Greatrix on 21/02/2021.
*/
public interface Indexable extends IntFunction {
/**
* The number of entries in this. Must be non-negative.
*
* @return the number of entries.
*/
int size();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy