public interface IFold<Main,Child>
| Modifier and Type | Method and Description |
|---|---|
Stream<Child> |
all(Main main) |
List<Child> |
allAsList(Main main) |
<GrandChild> |
chainFold(IFold<Child,GrandChild> t) |
static <T> IFold<Collection<T>,T> |
collectionFold() |
IFold<Main,Child> |
filter(Predicate<Child> p) |
void |
forEach(Main main,
one.xingyi.interfaces.ConsumerWithException<Child> consumer) |
IFold<Main,Child> |
lastN(int n) |
<T> IFold<Main,T> |
map(Function<Child,T> fn) |
<Child2,Merged> |
merge(IFold<Main,Child2> other,
IISO<Tuple2<Child,Child2>,Merged> iso) |
static <Main,Child> |
of(Function<Main,Stream<Child>> allFn) |
static <Main,Child> |
ofWithoutNulls(Function<Main,Stream<Child>> allFn) |
IFold<Main,Child> |
unique() |
static <Main,Child> IFold<Main,Child> ofWithoutNulls(Function<Main,Stream<Child>> allFn)
static <T> IFold<Collection<T>,T> collectionFold()
void forEach(Main main, one.xingyi.interfaces.ConsumerWithException<Child> consumer) throws Exception
ExceptionCopyright © 2023. All rights reserved.