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

org.daisy.common.transform.Mult Maven / Gradle / Ivy

The newest version!
package org.daisy.common.transform;

import java.util.NoSuchElementException;
import java.util.function.Supplier;

/**
 * Multiples of an input value.
 */
public interface Mult> extends Supplier {

	/**
	 * @throws NoSuchElementException if the maximum number of multiples has been reached.
	 */
	public I get() throws NoSuchElementException;

}