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

com.othelle.jtuples.Tuple Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy