com.othelle.jtuples.Tuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtuples Show documentation
Show all versions of jtuples Show documentation
Tuples library for Java. Inspired by Scala tuples.
package com.othelle.jtuples;
/**
* Base interface of all tuples. Contains general methods
* author: v.vlasov
*/
public interface Tuple extends Iterable {
int getArity();
Object getElement(int index);
}