Methods
| Modifier and Type |
Method and Description |
static <T> List<T> |
concat(Collection<T>... elems) |
static <T> List<T> |
filter(Iterable<T> collection,
Predicate<T> condition) |
static <T> Option<T> |
find(Iterable<T> collection,
Predicate<T> condition) |
static <K,T extends Collection<K>> List<K> |
flatten(Collection<T> elem) |
static <T,Z> Z |
foldL(Iterable<T> collection,
Z initialValue,
Function<Tuple2<Z,T>,Z> foldFunction) |
static <T,U> List<U> |
map(Iterable<T> collection,
Function<T,U> transformation) |
static <T,U> List<U> |
map(T[] array,
Function<T,U> transformation) |
static <T> String |
mkString(Iterable<T> collection) |
static <T> String |
mkString(Iterable<T> collection,
String start,
String end,
String separator) |
static <T> List<T> |
Nil() |
static <T> List<T> |
of(T... elements) |