Uses of Class
edu.rice.cs.plt.tuple.Septet

Packages that use Septet
edu.rice.cs.plt.io Provides extensions to the java.io package, which provides character- and byte- based streams and buffers, files, file filters, and serialization. 
edu.rice.cs.plt.iter A collection of implementations of Iterable and Iterator
edu.rice.cs.plt.tuple Classes for the type-parameterized representation of tuples. 
 

Uses of Septet in edu.rice.cs.plt.io
 

Methods in edu.rice.cs.plt.io that return Septet
static Septet<?,?,?,?,?,?,?> IOUtil.ensureSerializable(Septet<?,?,?,?,?,?,?> s)
          Apply ensureSerializable() to each of the elements of the given tuple.
 

Methods in edu.rice.cs.plt.io with parameters of type Septet
static Septet<?,?,?,?,?,?,?> IOUtil.ensureSerializable(Septet<?,?,?,?,?,?,?> s)
          Apply ensureSerializable() to each of the elements of the given tuple.
 

Uses of Septet in edu.rice.cs.plt.iter
 

Methods in edu.rice.cs.plt.iter that return Septet
static
<T> Septet<T,T,T,T,T,T,T>
IterUtil.makeSeptet(Iterable<? extends T> iter)
          Convert an iterable of 7 elements to a Septet.
 

Methods in edu.rice.cs.plt.iter with parameters of type Septet
static
<T> SizedIterable<T>
IterUtil.toIterable(Septet<? extends T,? extends T,? extends T,? extends T,? extends T,? extends T,? extends T> tuple)
          Produce an iterable of size 7 from a Septet.
 

Uses of Septet in edu.rice.cs.plt.tuple
 

Subclasses of Septet in edu.rice.cs.plt.tuple
 class IdentitySeptet<T1,T2,T3,T4,T5,T6,T7>
          A septet that defines IdentitySeptet.equals(java.lang.Object) and Tuple.hashCode() in terms of its elements' identity (==) instead of equality (@code equals})
 

Methods in edu.rice.cs.plt.tuple that return Septet
static
<T1,T2,T3,T4,T5,T6,T7>
Septet<T1,T2,T3,T4,T5,T6,T7>
Septet.make(T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth, T7 seventh)
          Call the constructor (allows the type arguments to be inferred)