8271268: Fix Javadoc links for Stream.mapMulti

Reviewed-by: liach, psandoz
This commit is contained in:
Mourad Abbay 2023-09-25 16:38:31 +00:00 committed by Paul Sandoz
parent 9688ec2d0d
commit afa48333ab

View File

@ -276,7 +276,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
* function to apply to each element which produces a stream * function to apply to each element which produces a stream
* of new values * of new values
* @return the new stream * @return the new stream
* @see #mapMulti * @see #mapMulti mapMulti
*/ */
<R> Stream<R> flatMap(Function<? super T, ? extends Stream<? extends R>> mapper); <R> Stream<R> flatMap(Function<? super T, ? extends Stream<? extends R>> mapper);
@ -296,7 +296,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
* function to apply to each element which produces a stream * function to apply to each element which produces a stream
* of new values * of new values
* @return the new stream * @return the new stream
* @see #flatMap(Function) * @see #flatMap flatMap
*/ */
IntStream flatMapToInt(Function<? super T, ? extends IntStream> mapper); IntStream flatMapToInt(Function<? super T, ? extends IntStream> mapper);
@ -316,7 +316,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
* function to apply to each element which produces a stream * function to apply to each element which produces a stream
* of new values * of new values
* @return the new stream * @return the new stream
* @see #flatMap(Function) * @see #flatMap flatMap
*/ */
LongStream flatMapToLong(Function<? super T, ? extends LongStream> mapper); LongStream flatMapToLong(Function<? super T, ? extends LongStream> mapper);
@ -336,7 +336,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
* function to apply to each element which produces a stream * function to apply to each element which produces a stream
* of new values * of new values
* @return the new stream * @return the new stream
* @see #flatMap(Function) * @see #flatMap flatMap
*/ */
DoubleStream flatMapToDouble(Function<? super T, ? extends DoubleStream> mapper); DoubleStream flatMapToDouble(Function<? super T, ? extends DoubleStream> mapper);