| Package | Description | 
|---|---|
| com.tangosol.util.function | 
 Contains Functional interfaces allowing remote execution of lambda expressions and method references. 
 | 
| com.tangosol.util.stream | 
 Contains classes to support functional-style operations on remote streams of elements,
such as map-reduce transformations on collections. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
default Remote.IntUnaryOperator | 
Remote.IntUnaryOperator.andThen(Remote.IntUnaryOperator after)
Returns a composed operator that first applies this operator to its
 input, and then applies the  
after operator to the result. | 
default Remote.IntUnaryOperator | 
Remote.IntUnaryOperator.compose(Remote.IntUnaryOperator before)
Returns a composed operator that first applies the  
before
 operator to its input, and then applies this operator to the result. | 
static Remote.IntUnaryOperator | 
Remote.IntUnaryOperator.identity()
Returns a unary operator that always returns its input argument. 
 | 
static Remote.IntUnaryOperator | 
Remote.intUnaryOperator(Remote.IntUnaryOperator operator)
Capture serializable IntUnaryOperator. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
default Remote.IntUnaryOperator | 
Remote.IntUnaryOperator.andThen(Remote.IntUnaryOperator after)
Returns a composed operator that first applies this operator to its
 input, and then applies the  
after operator to the result. | 
default Remote.IntUnaryOperator | 
Remote.IntUnaryOperator.compose(Remote.IntUnaryOperator before)
Returns a composed operator that first applies the  
before
 operator to its input, and then applies this operator to the result. | 
static Remote.IntUnaryOperator | 
Remote.intUnaryOperator(Remote.IntUnaryOperator operator)
Capture serializable IntUnaryOperator. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
default RemoteIntStream | 
RemoteIntStream.map(Remote.IntUnaryOperator mapper)
Returns a stream consisting of the results of applying the given
 function to the elements of this stream. 
 |