| Package | Description |
|---|---|
| com.m3.scalaflavor4j |
| Modifier and Type | Class and Description |
|---|---|
class |
ForkJoinParSeq<T>
ParSeq implementation |
| Modifier and Type | Method and Description |
|---|---|
static <T> ParSeq<T> |
ParSeq.apply(Collection<T> collection) |
static <T> ParSeq<T> |
ParSeq.apply(T... values) |
abstract ParSeq<T> |
ParSeq.filter(Function1<T,Boolean> f)
Selects all elements of this sequence which satisfy a predicate.
|
ParSeq<T> |
ForkJoinParSeq.filter(Function1<T,Boolean> predicate) |
abstract ParSeq<T> |
ParSeq.filterNot(Function1<T,Boolean> f)
Selects all elements of this immutable sequence which do not satisfy a
predicate.
|
ParSeq<T> |
ForkJoinParSeq.filterNot(Function1<T,Boolean> predicate) |
abstract <U> ParSeq<U> |
ParSeq.flatMap(Function1<T,CollectionLike<U>> f)
Builds a new collection by applying a function to all elements of this
sequence and concatenating the results.
|
<U> ParSeq<U> |
ForkJoinParSeq.flatMap(Function1<T,CollectionLike<U>> f) |
abstract <U> ParSeq<U> |
ParSeq.map(Function1<T,U> f)
Builds a new collection by applying a function to all elements of this
sequence.
|
<U> ParSeq<U> |
ForkJoinParSeq.map(Function1<T,U> f) |
abstract ParSeq<T> |
Seq.par()
Returns a parallel implementation of this collection.
|
ParSeq<T> |
Nil.par() |
ParSeq<T> |
IndexedSeq.par() |
Copyright © 2015. All rights reserved.