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

Packages that use Octet
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 Octet in edu.rice.cs.plt.io
 

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

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

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

Methods in edu.rice.cs.plt.iter that return Octet
static
<T> Octet<T,T,T,T,T,T,T,T>
IterUtil.makeOctet(Iterable<? extends T> iter)
          Convert an iterable of 8 elements to an Octet.
 

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

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

Subclasses of Octet in edu.rice.cs.plt.tuple
 class IdentityOctet<T1,T2,T3,T4,T5,T6,T7,T8>
          An octet that defines IdentityOctet.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 Octet
static
<T1,T2,T3,T4,T5,T6,T7,T8>
Octet<T1,T2,T3,T4,T5,T6,T7,T8>
Octet.make(T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth, T7 seventh, T8 eighth)
          Call the constructor (allows the type arguments to be inferred)