eu.interedition.collatex.suffixarray.ISymbolMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of collatex-core Show documentation
Show all versions of collatex-core Show documentation
A Java library for collating textual sources, for example, to produce an apparatus.
package eu.interedition.collatex.suffixarray;
/**
* Symbol mappers (reversible int-coding).
*
* @author Michał Nowak (Carrot Search)
* @author Dawid Weiss (Carrot Search)
*/
interface ISymbolMapper {
void map(int[] input, int start, int length);
void undo(int[] input, int start, int length);
}