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

eu.interedition.collatex.suffixarray.ISymbolMapper Maven / Gradle / Ivy

Go to download

A Java library for collating textual sources, for example, to produce an apparatus.

There is a newer version: 1.7.1
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy