| Modifier and Type | Method and Description |
|---|---|
static <E> Series<E> |
Series.empty()
Returns an empty
Series. |
static <E> Series<E> |
Series.of(Collection<? extends E> origin)
Returns a
Series composed of the given Collection's elements in the given order. |
static <E> Series<E> |
Series.of(E... elements)
Returns a
Series composed of the given elements in the given order. |
static <E> Series<E> |
Series.of(Iterable<? extends E> origin)
|
static <E> Series<E> |
Series.of(Streamable<? extends E> origin)
Returns a
Series composed of the given Streamable's elements in the given order. |
abstract Series<E> |
Series.tail()
Returns the remaining subseries that follows this series' head element.
|
| Modifier and Type | Method and Description |
|---|---|
<R> Optional<R> |
Series.ifCharged(BiFunction<E,Series<E>,R> function)
|
Copyright © 2024 Andreas Kluge-Kaindl, Bremen (de). All rights reserved.