@@ -216,14 +216,14 @@ trait StreamExtensions {
216
216
/**
217
217
* Copy the elements of this stream into a Scala collection.
218
218
*
219
- * Converting a parallel streams to an [[Accumulator ]] using `stream.toScalaFactory(Accumulator)`
219
+ * Converting a parallel streams to an [[scala.jdk. Accumulator ]] using `stream.toScalaFactory(Accumulator)`
220
220
* builds the result in parallel.
221
221
*
222
222
* A `toScalaFactory(Accumulator)` call automatically converts streams of boxed integers, longs or
223
- * doubles are converted to the primitive accumulators ([[IntAccumulator ]], etc.).
223
+ * doubles are converted to the primitive accumulators ([[scala.jdk. IntAccumulator ]], etc.).
224
224
*
225
225
* When converting a parallel stream to a different Scala collection, the stream is first
226
- * converted into an [[Accumulator ]], which supports parallel building. The accumulator is
226
+ * converted into an [[scala.jdk. Accumulator ]], which supports parallel building. The accumulator is
227
227
* then converted to the target collection. Note that the stream is processed eagerly while
228
228
* building the accumulator, even if the target collection is lazy.
229
229
*
@@ -243,11 +243,11 @@ trait StreamExtensions {
243
243
/**
244
244
* Copy the elements of this stream into a Scala collection.
245
245
*
246
- * For parallel streams, using [[accumulate ]] is recommended as it builds the [[Accumulator ]]
246
+ * For parallel streams, using [[accumulate ]] is recommended as it builds the [[scala.jdk. Accumulator ]]
247
247
* in parallel.
248
248
*
249
249
* When converting a parallel stream to a different Scala collection, the stream is first
250
- * converted into an [[Accumulator ]], which supports parallel building. The accumulator is
250
+ * converted into an [[scala.jdk. Accumulator ]], which supports parallel building. The accumulator is
251
251
* then converted to the target collection. Note that the stream is processed eagerly while
252
252
* building the accumulator, even if the target collection is lazy.
253
253
*
@@ -295,14 +295,14 @@ trait StreamExtensions {
295
295
/**
296
296
* Copy the elements of this stream into a Scala collection.
297
297
*
298
- * Converting a parallel streams to an [[Accumulator ]] using `stream.toScalaFactory(Accumulator)`
298
+ * Converting a parallel streams to an [[scala.jdk. Accumulator ]] using `stream.toScalaFactory(Accumulator)`
299
299
* builds the result in parallel.
300
300
*
301
301
* A `toScalaFactory(Accumulator)` call automatically converts the `IntStream` to a primitive
302
- * [[IntAccumulator ]].
302
+ * [[scala.jdk. IntAccumulator ]].
303
303
*
304
304
* When converting a parallel stream to a different Scala collection, the stream is first
305
- * converted into an [[Accumulator ]], which supports parallel building. The accumulator is
305
+ * converted into an [[scala.jdk. Accumulator ]], which supports parallel building. The accumulator is
306
306
* then converted to the target collection. Note that the stream is processed eagerly while
307
307
* building the accumulator, even if the target collection is lazy.
308
308
*
@@ -320,11 +320,11 @@ trait StreamExtensions {
320
320
/**
321
321
* Copy the elements of this stream into a Scala collection.
322
322
*
323
- * For parallel streams, using [[accumulate ]] is recommended as it builds the [[IntAccumulator ]]
323
+ * For parallel streams, using [[accumulate ]] is recommended as it builds the [[scala.jdk. IntAccumulator ]]
324
324
* in parallel.
325
325
*
326
326
* When converting a parallel stream to a different Scala collection, the stream is first
327
- * converted into an [[Accumulator ]], which supports parallel building. The accumulator is
327
+ * converted into an [[scala.jdk. Accumulator ]], which supports parallel building. The accumulator is
328
328
* then converted to the target collection. Note that the stream is processed eagerly while
329
329
* building the accumulator, even if the target collection is lazy.
330
330
*
@@ -343,14 +343,14 @@ trait StreamExtensions {
343
343
/**
344
344
* Copy the elements of this stream into a Scala collection.
345
345
*
346
- * Converting a parallel streams to an [[Accumulator ]] using `stream.toScalaFactory(Accumulator)`
346
+ * Converting a parallel streams to an [[scala.jdk. Accumulator ]] using `stream.toScalaFactory(Accumulator)`
347
347
* builds the result in parallel.
348
348
*
349
349
* A `toScalaFactory(Accumulator)` call automatically converts the `LongStream` to a primitive
350
- * [[LongAccumulator ]].
350
+ * [[scala.jdk. LongAccumulator ]].
351
351
*
352
352
* When converting a parallel stream to a different Scala collection, the stream is first
353
- * converted into an [[Accumulator ]], which supports parallel building. The accumulator is
353
+ * converted into an [[scala.jdk. Accumulator ]], which supports parallel building. The accumulator is
354
354
* then converted to the target collection. Note that the stream is processed eagerly while
355
355
* building the accumulator, even if the target collection is lazy.
356
356
*
@@ -368,11 +368,11 @@ trait StreamExtensions {
368
368
/**
369
369
* Copy the elements of this stream into a Scala collection.
370
370
*
371
- * For parallel streams, using [[accumulate ]] is recommended as it builds the [[LongAccumulator ]]
371
+ * For parallel streams, using [[accumulate ]] is recommended as it builds the [[scala.jdk. LongAccumulator ]]
372
372
* in parallel.
373
373
*
374
374
* When converting a parallel stream to a different Scala collection, the stream is first
375
- * converted into an [[Accumulator ]], which supports parallel building. The accumulator is
375
+ * converted into an [[scala.jdk. Accumulator ]], which supports parallel building. The accumulator is
376
376
* then converted to the target collection. Note that the stream is processed eagerly while
377
377
* building the accumulator, even if the target collection is lazy.
378
378
*
@@ -391,14 +391,14 @@ trait StreamExtensions {
391
391
/**
392
392
* Copy the elements of this stream into a Scala collection.
393
393
*
394
- * Converting a parallel streams to an [[Accumulator ]] using `stream.toScalaFactory(Accumulator)`
394
+ * Converting a parallel streams to an [[scala.jdk. Accumulator ]] using `stream.toScalaFactory(Accumulator)`
395
395
* builds the result in parallel.
396
396
*
397
397
* A `toScalaFactory(Accumulator)` call automatically converts the `DoubleStream` to a primitive
398
- * [[DoubleAccumulator ]].
398
+ * [[scala.jdk. DoubleAccumulator ]].
399
399
*
400
400
* When converting a parallel stream to a different Scala collection, the stream is first
401
- * converted into an [[Accumulator ]], which supports parallel building. The accumulator is
401
+ * converted into an [[scala.jdk. Accumulator ]], which supports parallel building. The accumulator is
402
402
* then converted to the target collection. Note that the stream is processed eagerly while
403
403
* building the accumulator, even if the target collection is lazy.
404
404
*
@@ -416,11 +416,11 @@ trait StreamExtensions {
416
416
/**
417
417
* Copy the elements of this stream into a Scala collection.
418
418
*
419
- * For parallel streams, using [[accumulate ]] is recommended as it builds the [[DoubleAccumulator ]]
419
+ * For parallel streams, using [[accumulate ]] is recommended as it builds the [[scala.jdk. DoubleAccumulator ]]
420
420
* in parallel.
421
421
*
422
422
* When converting a parallel stream to a different Scala collection, the stream is first
423
- * converted into an [[Accumulator ]], which supports parallel building. The accumulator is
423
+ * converted into an [[scala.jdk. Accumulator ]], which supports parallel building. The accumulator is
424
424
* then converted to the target collection. Note that the stream is processed eagerly while
425
425
* building the accumulator, even if the target collection is lazy.
426
426
*
0 commit comments