Class TupleList<O1,O2>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<Tuple<O1,O2>>
io.fi0x.javadatastructures.TupleList<O1,O2>
Type Parameters:
O1 - The type of Object that should be used for the first Tuple type.
O2 - The type of Object that should be used for the second Tuple type.
All Implemented Interfaces:
Serializable, Cloneable, Iterable<Tuple<O1,O2>>, Collection<Tuple<O1,O2>>, List<Tuple<O1,O2>>, RandomAccess

public class TupleList<O1,O2> extends ArrayList<Tuple<O1,O2>>
This class is an extension of a normal ArrayList. It is used to simplify the use of Tuples in an ArrayList.
See Also:
  • Constructor Details

    • TupleList

      public TupleList()
      The default constructor of this class.