Logo

GitLab

Sign in

Wojciech Jaworski / ENIAM

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ENIAM
  • tools
  • mate-tools
  • src
  • is2
  • data
  • Long2IntInterface.java
  • Dodanie MateParsera do ENIAMintegration
    95e859a0
    Wojciech Jaworski authored
    2017-06-28 20:17:37 +0200  
    Browse Code ยป
Long2IntInterface.java 272 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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);

}