DoubleStream.of(1.0, 2.0).forEach(System.out::println) において println に渡される型はどれか。

DoubleStreamのforEachはDoubleConsumerを引数に取るため、プリミティブのdoubleが渡される。