Uses of Interface
com.tangosol.util.function.Remote.LongPredicate
-
Packages that use Remote.LongPredicate 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. -
-
Uses of Remote.LongPredicate in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.LongPredicate Modifier and Type Method Description default Remote.LongPredicate
Remote.LongPredicate. and(Remote.LongPredicate other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static Remote.LongPredicate
Remote. longPredicate(Remote.LongPredicate predicate)
Capture serializable LongPredicate.default Remote.LongPredicate
Remote.LongPredicate. negate()
Returns a predicate that represents the logical negation of this predicate.default Remote.LongPredicate
Remote.LongPredicate. or(Remote.LongPredicate other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.Methods in com.tangosol.util.function with parameters of type Remote.LongPredicate Modifier and Type Method Description default Remote.LongPredicate
Remote.LongPredicate. and(Remote.LongPredicate other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static Remote.LongPredicate
Remote. longPredicate(Remote.LongPredicate predicate)
Capture serializable LongPredicate.default Remote.LongPredicate
Remote.LongPredicate. or(Remote.LongPredicate other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. -
Uses of Remote.LongPredicate in com.tangosol.util.stream
Methods in com.tangosol.util.stream with parameters of type Remote.LongPredicate Modifier and Type Method Description default boolean
RemoteLongStream. allMatch(Remote.LongPredicate predicate)
Returns whether all elements of this stream match the provided predicate.default boolean
RemoteLongStream. anyMatch(Remote.LongPredicate predicate)
Returns whether any elements of this stream match the provided predicate.default RemoteLongStream
RemoteLongStream. filter(Remote.LongPredicate predicate)
Returns a stream consisting of the elements of this stream that match the given predicate.default boolean
RemoteLongStream. noneMatch(Remote.LongPredicate predicate)
Returns whether no elements of this stream match the provided predicate.
-