Uses of Interface
com.tangosol.util.stream.RemoteDoubleStream
Packages that use 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.streamMethods in com.tangosol.util.stream that return RemoteDoubleStreamModifier and TypeMethodDescriptionRemoteIntStream.asDoubleStream()Returns aDoubleStreamconsisting of the elements of this stream, converted todouble.RemoteLongStream.asDoubleStream()Returns aDoubleStreamconsisting of the elements of this stream, converted todouble.default RemoteDoubleStreamRemoteDoubleStream.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 RemoteDoubleStreamRemoteDoubleStream.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 RemoteDoubleStreamRemoteStream.flatMapToDouble(Remote.Function<? super T, ? extends DoubleStream> mapper) Returns anDoubleStreamconsisting 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 anDoubleStreamconsisting 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 RemoteDoubleStreamRemoteDoubleStream.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 RemoteDoubleStreamRemoteIntStream.mapToDouble(Remote.IntToDoubleFunction mapper) Returns aDoubleStreamconsisting of the results of applying the given function to the elements of this stream.RemoteIntStream.mapToDouble(IntToDoubleFunction mapper) Returns aDoubleStreamconsisting of the results of applying the given function to the elements of this stream.default RemoteDoubleStreamRemoteLongStream.mapToDouble(Remote.LongToDoubleFunction mapper) Returns aDoubleStreamconsisting of the results of applying the given function to the elements of this stream.RemoteLongStream.mapToDouble(LongToDoubleFunction mapper) Returns aDoubleStreamconsisting of the results of applying the given function to the elements of this stream.default RemoteDoubleStreamRemoteStream.mapToDouble(Remote.ToDoubleFunction<? super T> mapper) Returns aDoubleStreamconsisting of the results of applying the given function to the elements of this stream.default RemoteDoubleStreamRemoteStream.mapToDouble(ValueExtractor<? super T, ? extends Number> mapper) Returns anDoubleStreamconsisting of the results of applying the given extractor to the elements of this stream.RemoteStream.mapToDouble(ToDoubleFunction<? super T> mapper) Returns aDoubleStreamconsisting of the results of applying the given function to the elements of this stream.RemoteDoubleStream.parallel()default RemoteDoubleStreamRemoteDoubleStream.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.