Module java.base

Interface DoubleStream.DoubleMapMultiConsumer

Enclosing interface:
DoubleStream
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface DoubleStream.DoubleMapMultiConsumer
Represents an operation that accepts a double-valued argument and a DoubleConsumer, and returns no result. This functional interface is used by DoubleStream.mapMulti to replace a double value with zero or more double values.

This is a functional interface whose functional method is accept(double, DoubleConsumer).

Since:
16
See Also: