| Package | Description |
|---|---|
| org.magicwerk.brownies.collections |
This packages contains collections extending the Java Collections Framework.
|
| org.magicwerk.brownies.collections.primitive |
This packages contains implementations of GapList for primitive data types.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IList.filter(Predicate<? super E> predicate)
Filter the list using the specified predicate.
|
KeyList.Builder<E> |
KeyList.Builder.withConstraint(Predicate<E> constraint) |
KeyCollection.Builder<E> |
KeyCollection.Builder.withConstraint(Predicate<E> constraint) |
Key2List.Builder<E,K1,K2> |
Key2List.Builder.withConstraint(Predicate<E> constraint) |
Key2Collection.Builder<E,K1,K2> |
Key2Collection.Builder.withConstraint(Predicate<E> constraint) |
Key1List.Builder<E,K> |
Key1List.Builder.withConstraint(Predicate<E> constraint) |
Key1Collection.Builder<E,K> |
Key1Collection.Builder.withConstraint(Predicate<E> constraint) |
| Modifier and Type | Method and Description |
|---|---|
void |
IBooleanList.filter(Predicate<java.lang.Boolean> predicate)
Filter the list using the specified predicate.
|
void |
IByteList.filter(Predicate<java.lang.Byte> predicate)
Filter the list using the specified predicate.
|
void |
ICharList.filter(Predicate<java.lang.Character> predicate)
Filter the list using the specified predicate.
|
void |
IDoubleList.filter(Predicate<java.lang.Double> predicate)
Filter the list using the specified predicate.
|
void |
IFloatList.filter(Predicate<java.lang.Float> predicate)
Filter the list using the specified predicate.
|
void |
IIntList.filter(Predicate<java.lang.Integer> predicate)
Filter the list using the specified predicate.
|
void |
ILongList.filter(Predicate<java.lang.Long> predicate)
Filter the list using the specified predicate.
|
void |
IShortList.filter(Predicate<java.lang.Short> predicate)
Filter the list using the specified predicate.
|