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

com.pippsford.stencil.value.Indexable Maven / Gradle / Ivy

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