Uses of Interface
com.tangosol.util.stream.RemoteDoubleStream
Package
Description
Contains classes to support functional-style operations on remote streams of elements,
such as map-reduce transformations on collections.
-
Uses of RemoteDoubleStream in com.tangosol.util.stream
Modifier and TypeMethodDescriptionRemoteIntStream.asDoubleStream()
Returns aDoubleStream
consisting of the elements of this stream, converted todouble
.RemoteLongStream.asDoubleStream()
Returns aDoubleStream
consisting of the elements of this stream, converted todouble
.default RemoteDoubleStream
RemoteDoubleStream.filter
(Remote.DoublePredicate predicate) Returns a stream consisting of the elements of this stream that match the given predicate.RemoteDoubleStream.filter
(DoublePredicate predicate) Returns a stream consisting of the elements of this stream that match the given predicate.default RemoteDoubleStream
RemoteDoubleStream.flatMap
(Remote.DoubleFunction<? extends DoubleStream> mapper) Returns a stream consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.RemoteDoubleStream.flatMap
(DoubleFunction<? extends DoubleStream> mapper) Returns a stream consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.default RemoteDoubleStream
RemoteStream.flatMapToDouble
(Remote.Function<? super T, ? extends DoubleStream> mapper) Returns anDoubleStream
consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.RemoteStream.flatMapToDouble
(Function<? super T, ? extends DoubleStream> mapper) Returns anDoubleStream
consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.default RemoteDoubleStream
RemoteDoubleStream.map
(Remote.DoubleUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.RemoteDoubleStream.map
(DoubleUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.default RemoteDoubleStream
RemoteStream.mapMultiToDouble
(Remote.BiConsumer<? super T, ? super DoubleConsumer> mapper) Returns aDoubleStream
consisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.RemoteStream.mapMultiToDouble
(BiConsumer<? super T, ? super DoubleConsumer> mapper) Returns aDoubleStream
consisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.default RemoteDoubleStream
RemoteIntStream.mapToDouble
(Remote.IntToDoubleFunction mapper) Returns aDoubleStream
consisting of the results of applying the given function to the elements of this stream.RemoteIntStream.mapToDouble
(IntToDoubleFunction mapper) Returns aDoubleStream
consisting of the results of applying the given function to the elements of this stream.default RemoteDoubleStream
RemoteLongStream.mapToDouble
(Remote.LongToDoubleFunction mapper) Returns aDoubleStream
consisting of the results of applying the given function to the elements of this stream.RemoteLongStream.mapToDouble
(LongToDoubleFunction mapper) Returns aDoubleStream
consisting of the results of applying the given function to the elements of this stream.default RemoteDoubleStream
RemoteStream.mapToDouble
(Remote.ToDoubleFunction<? super T> mapper) Returns aDoubleStream
consisting of the results of applying the given function to the elements of this stream.default RemoteDoubleStream
RemoteStream.mapToDouble
(ValueExtractor<? super T, ? extends Number> mapper) Returns anDoubleStream
consisting of the results of applying the given extractor to the elements of this stream.RemoteStream.mapToDouble
(ToDoubleFunction<? super T> mapper) Returns aDoubleStream
consisting of the results of applying the given function to the elements of this stream.RemoteDoubleStream.parallel()
default RemoteDoubleStream
RemoteDoubleStream.peek
(Remote.DoubleConsumer action) Returns a stream consisting of the elements of this stream, additionally performing the provided action on each element as elements are consumed from the resulting stream.RemoteDoubleStream.peek
(DoubleConsumer action) Returns a stream consisting of the elements of this stream, additionally performing the provided action on each element as elements are consumed from the resulting stream.RemoteDoubleStream.sequential()
static <T extends Number>
RemoteDoubleStreamRemoteStream.toDoubleStream
(RemoteStream<T> stream) Convert stream of numbers intoRemoteDoubleStream
.