Package | Description |
---|---|
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.set |
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelUnsortedSetIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.
|
Modifier and Type | Method and Description |
---|---|
ParallelSetIterable<T> |
ParallelSetIterable.reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelSetIterable<T> |
ParallelSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ParallelSetIterable<T> |
ParallelSetIterable.select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.
|
<S> ParallelSetIterable<S> |
ParallelSetIterable.selectInstancesOf(Class<S> clazz) |
<P> ParallelSetIterable<T> |
ParallelSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Interface and Description |
---|---|
interface |
ParallelSortedSetIterable<T> |
Modifier and Type | Class and Description |
---|---|
class |
ParallelDistinctIterable<T> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractParallelUnsortedSetIterable<T,B extends UnsortedSetBatch<T>> |
Copyright © 2004–2016. All rights reserved.