public static interface IntStream.IntMapMultiConsumer
int
-valued argument
and an IntConsumer, and returns no result. This functional interface is
used by IntStream.mapMulti
to replace an int value with zero or more int values.
This is a functional interface
whose functional method is accept(int, IntConsumer)
.
IntStream.mapMulti(java8.util.stream.IntStream.IntMapMultiConsumer)
Modifier and Type | Method and Description |
---|---|
void |
accept(int value,
IntConsumer ic)
Replaces the given
value with zero or more values by feeding the mapped
values to the ic consumer. |
void accept(int value, IntConsumer ic)
value
with zero or more values by feeding the mapped
values to the ic
consumer.value
- the int value coming from upstreamic
- an IntConsumer
accepting the mapped valuesCopyright © 2021. All rights reserved.