Package | Description |
---|---|
com.gs.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
com.gs.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List . |
com.gs.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
com.gs.collections.impl.lazy.parallel.list | |
com.gs.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
Modifier and Type | Method and Description |
---|---|
<V> ParallelListIterable<V> |
ParallelSortedBag.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> ParallelListIterable<V> |
ParallelSortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<P,V> ParallelListIterable<V> |
ParallelSortedBag.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> ParallelListIterable<V> |
ParallelSortedBag.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
Modifier and Type | Method and Description |
---|---|
<V> ParallelListIterable<V> |
ParallelListIterable.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> ParallelListIterable<V> |
ParallelListIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<P,V> ParallelListIterable<V> |
ParallelListIterable.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> ParallelListIterable<V> |
ParallelListIterable.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
ParallelListIterable<T> |
ParallelListIterable.reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelListIterable<T> |
ParallelListIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ParallelListIterable<T> |
ParallelListIterable.select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.
|
<S> ParallelListIterable<S> |
ParallelListIterable.selectInstancesOf(Class<S> clazz) |
<P> ParallelListIterable<T> |
ParallelListIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Method and Description |
---|---|
<V> ParallelListIterable<V> |
ParallelSortedSetIterable.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> ParallelListIterable<V> |
ParallelSortedSetIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function)
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<P,V> ParallelListIterable<V> |
ParallelSortedSetIterable.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> ParallelListIterable<V> |
ParallelSortedSetIterable.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelListIterable<T,B extends ListBatch<T>> |
Modifier and Type | Method and Description |
---|---|
<V> ParallelListIterable<V> |
AbstractParallelListIterable.collect(Function<? super T,? extends V> function) |
<V> ParallelListIterable<V> |
AbstractParallelListIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<P,V> ParallelListIterable<V> |
AbstractParallelListIterable.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> ParallelListIterable<V> |
AbstractParallelListIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
ParallelListIterable<T> |
AbstractParallelListIterable.reject(Predicate<? super T> predicate) |
<P> ParallelListIterable<T> |
AbstractParallelListIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ParallelListIterable<T> |
AbstractParallelListIterable.select(Predicate<? super T> predicate) |
<S> ParallelListIterable<S> |
AbstractParallelListIterable.selectInstancesOf(Class<S> clazz) |
<P> ParallelListIterable<T> |
AbstractParallelListIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Method and Description |
---|---|
ParallelListIterable<T> |
FastList.asParallel(ExecutorService executorService,
int batchSize) |
Copyright © 2004–2017. All rights reserved.