is2.data.Long2IntInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anna Show documentation
Show all versions of anna Show documentation
Tools for Natural Language Analysis, Generation and Machine Learning
The newest version!
package is2.data;
public interface Long2IntInterface {
public abstract int size();
/**
* Maps a long to a integer value. This is very useful to save memory for sparse data long values
* @param l
* @return the integer
*/
public abstract int l2i(long l);
}