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

is2.data.Long2IntInterface Maven / Gradle / Ivy

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy