Class UnaryTupleList

All Implemented Interfaces:
Iterable<List<Member>>, Collection<List<Member>>, List<List<Member>>, TupleIterable, TupleList

public class UnaryTupleList extends AbstractList<List<Member>> implements TupleList
Implementation of TupleList where the tuples are unary (each tuple consists of just one Member).

It is implemented as a straightforward wrapper on a backing list. You can provide the backing list explicitly using the UnaryTupleList(java.util.List) constructor, and you can access the backing list by calling slice(int)(0).

Author:
jhyde