mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8271268: Fix Javadoc links for Stream.mapMulti
Reviewed-by: liach, psandoz
This commit is contained in:
parent
9688ec2d0d
commit
afa48333ab
1 changed files with 4 additions and 4 deletions
|
@ -276,7 +276,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
|
|||
* function to apply to each element which produces a stream
|
||||
* of new values
|
||||
* @return the new stream
|
||||
* @see #mapMulti
|
||||
* @see #mapMulti mapMulti
|
||||
*/
|
||||
<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
|
||||
* of new values
|
||||
* @return the new stream
|
||||
* @see #flatMap(Function)
|
||||
* @see #flatMap flatMap
|
||||
*/
|
||||
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
|
||||
* of new values
|
||||
* @return the new stream
|
||||
* @see #flatMap(Function)
|
||||
* @see #flatMap flatMap
|
||||
*/
|
||||
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
|
||||
* of new values
|
||||
* @return the new stream
|
||||
* @see #flatMap(Function)
|
||||
* @see #flatMap flatMap
|
||||
*/
|
||||
DoubleStream flatMapToDouble(Function<? super T, ? extends DoubleStream> mapper);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue