org.daisy.dotify.common.splitter.SplitResult Maven / Gradle / Ivy
The newest version!
package org.daisy.dotify.common.splitter;
import java.util.List;
/**
* Provides a split result.
* @author Joel Håkansson
*
* @param the type of units
* @param the type of data source
*/
public interface SplitResult > {
/**
* The head of the result.
* @return returns the head
*/
public List head();
/**
* The tail of the result.
* @return returns the tail
*/
public U tail();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy