Skip navigation links
A B C D F G I L M N P R S T 

A

allMatch(DoublePredicate) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
allMatch(IntPredicate) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
allMatch(LongPredicate) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
allMatch(Predicate<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
anyMatch(DoublePredicate) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
anyMatch(IntPredicate) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
anyMatch(LongPredicate) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
anyMatch(Predicate<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
asDoubleStream() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
asDoubleStream() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
asLongStream() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
average() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
average() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
average() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 

B

boxed() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
boxed() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
boxed() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 

C

collect(Supplier<R>, ObjDoubleConsumer<R>, BiConsumer<R, R>) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
collect(Supplier<R>, ObjIntConsumer<R>, BiConsumer<R, R>) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
collect(Supplier<R>, ObjLongConsumer<R>, BiConsumer<R, R>) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
collect(Supplier<R>, BiConsumer<R, ? super T>, BiConsumer<R, R>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
collect(Collector<? super T, A, R>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
com.github.ferstl.streams - package com.github.ferstl.streams
 
concat(DoubleStream, DoubleStream, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
Creates a lazily concatenated parallel double stream whose elements are all the elements of the first stream followed by all the elements of the second stream.
concat(IntStream, IntStream, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a lazily concatenated parallel int stream whose elements are all the elements of the first stream followed by all the elements of the second stream.
concat(LongStream, LongStream, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a lazily concatenated parallel long stream whose elements are all the elements of the first stream followed by all the elements of the second stream.
concat(Stream<? extends T>, Stream<? extends T>, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelStreamSupport
Creates a lazily concatenated parallel stream whose elements are all the elements of the first stream followed by all the elements of the second stream.
count() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
count() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
count() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
count() - Method in class com.github.ferstl.streams.ParallelStreamSupport
 

D

distinct() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
distinct() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
distinct() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
distinct() - Method in class com.github.ferstl.streams.ParallelStreamSupport
 

F

filter(DoublePredicate) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
filter(IntPredicate) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
filter(LongPredicate) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
filter(Predicate<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
findAny() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
findAny() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
findAny() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
findAny() - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
findFirst() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
findFirst() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
findFirst() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
findFirst() - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
flatMap(DoubleFunction<? extends DoubleStream>) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
flatMap(IntFunction<? extends IntStream>) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
flatMap(LongFunction<? extends LongStream>) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
flatMap(Function<? super T, ? extends Stream<? extends R>>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
flatMapToDouble(Function<? super T, ? extends DoubleStream>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
flatMapToInt(Function<? super T, ? extends IntStream>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
flatMapToLong(Function<? super T, ? extends LongStream>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
forEach(DoubleConsumer) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
forEach(IntConsumer) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
forEach(LongConsumer) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
forEach(Consumer<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
forEachOrdered(DoubleConsumer) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
forEachOrdered(IntConsumer) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
forEachOrdered(LongConsumer) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
forEachOrdered(Consumer<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 

G

generate(DoubleSupplier, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
Creates a parallel infinite sequential unordered double stream where each element is generated by the provided DoubleSupplier.
generate(IntSupplier, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a parallel infinite sequential unordered int stream where each element is generated by the provided IntSupplier.
generate(LongSupplier, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a parallel infinite sequential unordered long stream where each element is generated by the provided LongSupplier.
generate(Supplier<T>, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelStreamSupport
Creates a parallel infinite sequential unordered stream where each element is generated by the provided Supplier.

I

iterate(double, DoubleUnaryOperator, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
Creates a parallel infinite ordered double stream produced by iterative application of a function f to an initial element seed.
iterate(int, IntUnaryOperator, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a parallel infinite ordered int stream produced by iterative application of a function f to an initial element seed.
iterate(long, LongUnaryOperator, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a parallel infinite ordered long stream produced by iterative application of a function f to an initial element seed.
iterate(T, UnaryOperator<T>, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelStreamSupport
Creates a parallel infinite ordered stream produced by iterative application of a function f to an initial element seed.
iterator() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
iterator() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
iterator() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 

L

limit(long) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
limit(long) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
limit(long) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
limit(long) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 

M

map(DoubleUnaryOperator) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
map(IntUnaryOperator) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
map(LongUnaryOperator) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
map(Function<? super T, ? extends R>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
mapToDouble(IntToDoubleFunction) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
mapToDouble(LongToDoubleFunction) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
mapToDouble(ToDoubleFunction<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
mapToInt(DoubleToIntFunction) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
mapToInt(LongToIntFunction) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
mapToInt(ToIntFunction<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
mapToLong(DoubleToLongFunction) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
mapToLong(IntToLongFunction) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
mapToLong(ToLongFunction<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
mapToObj(DoubleFunction<? extends U>) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
mapToObj(IntFunction<? extends U>) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
mapToObj(LongFunction<? extends U>) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
max() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
max() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
max() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
max(Comparator<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
min() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
min() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
min() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
min(Comparator<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 

N

noneMatch(DoublePredicate) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
noneMatch(IntPredicate) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
noneMatch(LongPredicate) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
noneMatch(Predicate<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 

P

ParallelDoubleStreamSupport - Class in com.github.ferstl.streams
An implementation of DoubleStream which uses a custom ForkJoinPool for parallel aggregate operations.
ParallelIntStreamSupport - Class in com.github.ferstl.streams
An implementation of IntStream which uses a custom ForkJoinPool for parallel aggregate operations.
ParallelLongStreamSupport - Class in com.github.ferstl.streams
An implementation of LongStream which uses a custom ForkJoinPool for parallel aggregate operations.
parallelStream(double[], ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
Creates a parallel double stream from the given Array.
parallelStream(Spliterator.OfDouble, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
Creates a parallel double stream from the given Spliterator.
parallelStream(Supplier<? extends Spliterator.OfDouble>, int, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
Creates a parallel double stream from the given Spliterator supplier.
parallelStream(DoubleStream.Builder, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
Creates a parallel double stream from the given Builder.
parallelStream(int[], ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a parallel int stream from the given Array.
parallelStream(Spliterator.OfInt, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a parallel int stream from the given Spliterator.
parallelStream(Supplier<? extends Spliterator.OfInt>, int, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a parallel int stream from the given Spliterator supplier.
parallelStream(IntStream.Builder, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a parallel int stream from the given Builder.
parallelStream(long[], ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a parallel long stream from the given Array.
parallelStream(Spliterator.OfLong, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a parallel long stream from the given Spliterator.
parallelStream(Supplier<? extends Spliterator.OfLong>, int, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a parallel long stream from the given Spliterator supplier.
parallelStream(LongStream.Builder, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a parallel long stream from the given Builder.
parallelStream(Collection<T>, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelStreamSupport
Creates a parallel stream from the given Collection.
parallelStream(T[], ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelStreamSupport
Creates a parallel stream from the given Array.
parallelStream(Spliterator<T>, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelStreamSupport
Creates a parallel stream from the given Spliterator.
parallelStream(Supplier<? extends Spliterator<T>>, int, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelStreamSupport
Creates a parallel stream from the given Spliterator supplier.
parallelStream(Stream.Builder<T>, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelStreamSupport
Creates a parallel stream from the given Builder.
ParallelStreamSupport<T> - Class in com.github.ferstl.streams
An implementation of Stream which uses a custom ForkJoinPool for parallel aggregate operations.
peek(DoubleConsumer) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
peek(IntConsumer) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
peek(LongConsumer) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
peek(Consumer<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 

R

range(int, int, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a parallel ordered int stream from startInclusive (inclusive) to endExclusive (exclusive) by an incremental step of 1.
range(long, long, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a parallel ordered long stream from startInclusive (inclusive) to endExclusive (exclusive) by an incremental step of 1.
rangeClosed(int, int, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelIntStreamSupport
Creates a parallel ordered int stream from startInclusive (inclusive) to endInclusive (inclusive) by an incremental step of 1.
rangeClosed(long, long, ForkJoinPool) - Static method in class com.github.ferstl.streams.ParallelLongStreamSupport
Creates a parallel ordered long stream from startInclusive (inclusive) to endInclusive (inclusive) by an incremental step of 1.
reduce(double, DoubleBinaryOperator) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
reduce(DoubleBinaryOperator) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
reduce(int, IntBinaryOperator) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
reduce(IntBinaryOperator) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
reduce(long, LongBinaryOperator) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
reduce(LongBinaryOperator) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
reduce(T, BinaryOperator<T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
reduce(BinaryOperator<T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
reduce(U, BiFunction<U, ? super T, U>, BinaryOperator<U>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 

S

skip(long) - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
skip(long) - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
skip(long) - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
skip(long) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
sorted() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
sorted() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
sorted() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
sorted() - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
sorted(Comparator<? super T>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
spliterator() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
spliterator() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
spliterator() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
sum() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
sum() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
sum() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
summaryStatistics() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
summaryStatistics() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
summaryStatistics() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 

T

toArray() - Method in class com.github.ferstl.streams.ParallelDoubleStreamSupport
 
toArray() - Method in class com.github.ferstl.streams.ParallelIntStreamSupport
 
toArray() - Method in class com.github.ferstl.streams.ParallelLongStreamSupport
 
toArray() - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
toArray(IntFunction<A[]>) - Method in class com.github.ferstl.streams.ParallelStreamSupport
 
A B C D F G I L M N P R S T 
Skip navigation links

Copyright © 2016. All rights reserved.