| Interface | Description | 
|---|---|
| Consumer3<T1,T2,T3> | 
 An operation that accepts three input arguments and returns no result. 
 | 
| Consumer4<T1,T2,T3,T4> | 
 An operation that accepts four input arguments and returns no result. 
 | 
| Consumer5<T1,T2,T3,T4,T5> | 
 An operation that accepts five input arguments and returns no result. 
 | 
| Consumer6<T1,T2,T3,T4,T5,T6> | 
 An operation that accepts six input arguments and returns no result. 
 | 
| Consumer7<T1,T2,T3,T4,T5,T6,T7> | 
 An operation that accepts seven input arguments and returns no result. 
 | 
| Consumer8<T1,T2,T3,T4,T5,T6,T7,T8> | 
 An operation that accepts eight input arguments and returns no result. 
 | 
| Function3<T1,T2,T3,R> | 
 Represents a function that accepts three arguments and produces a result. 
 | 
| Function4<T1,T2,T3,T4,R> | 
 Represents a function that accepts four arguments and produces a result. 
 | 
| Function5<T1,T2,T3,T4,T5,R> | 
 Represents a function that accepts five arguments and produces a result. 
 | 
| Function6<T1,T2,T3,T4,T5,T6,R> | 
 Represents a function that accepts six arguments and produces a result. 
 | 
| Function7<T1,T2,T3,T4,T5,T6,T7,R> | 
 Represents a function that accepts seven arguments and produces a result. 
 | 
| Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> | 
 Represents a function that accepts eight arguments and produces a result. 
 | 
| Predicate3<T1,T2,T3> | 
 Represents a predicate (boolean-valued function) of three arguments. 
 | 
| Predicate4<T1,T2,T3,T4> | 
 Represents a predicate (boolean-valued function) of four arguments. 
 | 
| Predicate5<T1,T2,T3,T4,T5> | 
 Represents a predicate (boolean-valued function) of five arguments. 
 | 
| Predicate6<T1,T2,T3,T4,T5,T6> | 
 Represents a predicate (boolean-valued function) of six arguments. 
 | 
| Predicate7<T1,T2,T3,T4,T5,T6,T7> | 
 Represents a predicate (boolean-valued function) of seven arguments. 
 | 
| Predicate8<T1,T2,T3,T4,T5,T6,T7,T8> | 
 Represents a predicate (boolean-valued function) of eight arguments. 
 | 
| Class | Description | 
|---|---|
| TupleUtils |