Package | Description |
---|---|
com.koloboke.collect |
The root package of the collection library.
|
com.koloboke.collect.hash |
Contains basic interfaces and commonly used classes related to containers, based on hash tables.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ObjCollection.forEachWhile(Predicate<? super E> predicate)
Checks the given
predicate on each element of this collection until all element
have been processed or the predicate returns false for some element,
or throws an Exception . |
boolean |
ObjCollection.removeIf(Predicate<? super E> filter)
Removes all of the elements of this collection that satisfy the given predicate.
|
Modifier and Type | Method and Description |
---|---|
abstract Predicate<HashContainer> |
HashConfig.getShrinkCondition()
Returns the shrink condition of this hash config.
|
Modifier and Type | Method and Description |
---|---|
HashConfig |
HashConfig.withShrinkCondition(Predicate<HashContainer> condition)
Returns a copy of this hash config with the shrink condition set to the given predicate.
|