| Package | Description |
|---|---|
| com.github.bicoco | |
| com.github.bicoco.collections |
| Modifier and Type | Method and Description |
|---|---|
static <T> int |
$.count(List<T> list,
ConditionFunction<T> function)
Return size of list where function returns true, or 0 to empty list.
|
static <T> List<T> |
$.reject(List<T> list,
ConditionFunction<T> function)
Select all elements that condition returns false.
|
static <T> void |
$.reject$(List<T> list,
ConditionFunction<T> function)
Select all elements that condition returns false.
|
static <T> List<T> |
$.select(List<T> list,
ConditionFunction<T> function)
Select all elements that condition returns true.
|
static <T> void |
$.select$(List<T> list,
ConditionFunction<T> function)
Select all elements that condition returns true.
|
| Modifier and Type | Method and Description |
|---|---|
int |
ListHelper.count(ConditionFunction<T> function)
Return size of list where function returns true, or 0 to empty list.
|
List<T> |
ListHelper.reject(ConditionFunction<T> function)
Select all elements that condition returns false.
|
void |
ListHelper.reject$(ConditionFunction<T> function)
Select all elements that condition returns false.
|
List<T> |
ListHelper.select(ConditionFunction<T> function)
Select all elements that condition returns true.
|
void |
ListHelper.select$(ConditionFunction<T> function)
Select all elements that condition returns true.
|
Copyright © 2014. All Rights Reserved.