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

org.codefilarete.tool.function.Sequence Maven / Gradle / Ivy

package org.codefilarete.tool.function;

/**
 * 
 * @param  the type of returned values
 * 
 * @author Guillaume Mary
 */
@FunctionalInterface
public interface Sequence {
	
	I next();
}