Package | Description |
---|---|
com.gs.collections.api |
This package contains interfaces for GS Collections API.
|
com.gs.collections.api.bag |
This package contains interfaces for Bag API.
|
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 |
This package contains interfaces for set API which enhance the performance and functionality of
Set . |
com.gs.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
com.gs.collections.impl.lazy.parallel | |
com.gs.collections.impl.lazy.parallel.bag | |
com.gs.collections.impl.lazy.parallel.list | |
com.gs.collections.impl.lazy.parallel.set |
Modifier and Type | Method and Description |
---|---|
ParallelIterable<T> |
ParallelIterable.asUnique() |
<V> ParallelIterable<V> |
ParallelIterable.collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> ParallelIterable<V> |
ParallelIterable.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> ParallelIterable<V> |
ParallelIterable.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> ParallelIterable<V> |
ParallelIterable.flatCollect(Function<? super T,? extends Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.
|
ParallelIterable<T> |
ParallelIterable.reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelIterable<T> |
ParallelIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ParallelIterable<T> |
ParallelIterable.select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.
|
<S> ParallelIterable<S> |
ParallelIterable.selectInstancesOf(Class<S> clazz) |
<P> ParallelIterable<T> |
ParallelIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelBag<T> |
interface |
ParallelUnsortedBag<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelSortedBag<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelListIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelSetIterable<T> |
interface |
ParallelUnsortedSetIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelSortedSetIterable<T> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelIterable<T,B extends Batch<T>> |
class |
AbstractParallelIterableImpl<T,B extends Batch<T>> |
class |
ParallelDistinctIterable<T> |
class |
ParallelSelectIterable<T> |
Modifier and Type | Method and Description |
---|---|
<V> ParallelIterable<V> |
AbstractParallelIterableImpl.collect(Function<? super T,? extends V> function) |
<V> ParallelIterable<V> |
AbstractParallelIterableImpl.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<P,V> ParallelIterable<V> |
AbstractParallelIterableImpl.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> ParallelIterable<V> |
AbstractParallelIterableImpl.flatCollect(Function<? super T,? extends Iterable<V>> function) |
ParallelIterable<T> |
AbstractParallelIterableImpl.reject(Predicate<? super T> predicate) |
<P> ParallelIterable<T> |
AbstractParallelIterableImpl.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ParallelIterable<T> |
AbstractParallelIterableImpl.select(Predicate<? super T> predicate) |
<S> ParallelIterable<S> |
AbstractParallelIterableImpl.selectInstancesOf(Class<S> clazz) |
<P> ParallelIterable<T> |
AbstractParallelIterableImpl.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelUnsortedBag<T,B extends UnsortedBagBatch<T>> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelListIterable<T,B extends ListBatch<T>> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelUnsortedSetIterable<T,B extends UnsortedSetBatch<T>> |
class |
ParallelCollectIterable<T,V> |
Modifier and Type | Method and Description |
---|---|
<V> ParallelIterable<V> |
AbstractParallelUnsortedSetIterable.collect(Function<? super T,? extends V> function) |
<V> ParallelIterable<V> |
AbstractParallelUnsortedSetIterable.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
<P,V> ParallelIterable<V> |
AbstractParallelUnsortedSetIterable.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> ParallelIterable<V> |
AbstractParallelUnsortedSetIterable.flatCollect(Function<? super T,? extends Iterable<V>> function) |
Copyright © 2004–2017. All rights reserved.