@@ -353,8 +353,8 @@ private sealed abstract class VectorImpl[+A](_prefix1: Arr1) extends Vector[A](_
353353/** Vector with suffix and length fields; all Vector subclasses except Vector1 extend this.
354354 *
355355 * @tparam A the element type of the vector
356- * @param private[immutable] val suffix1 the last data array containing the rightmost elements
357- * @param private[immutable] val length0 the total number of elements in this vector
356+ * @param suffix1 the last data array containing the rightmost elements
357+ * @param length0 the total number of elements in this vector
358358 */
359359private sealed abstract class BigVector [+ A ](_prefix1 : Arr1 , private [immutable] val suffix1 : Arr1 , private [immutable] val length0 : Int ) extends VectorImpl [A ](_prefix1) {
360360
@@ -474,8 +474,8 @@ private final class Vector1[+A](_data1: Arr1) extends VectorImpl[A](_data1) {
474474/** 2-dimensional radix-balanced finger tree.
475475 *
476476 * @tparam A the element type of the vector
477- * @param private[immutable] val len1 the number of elements in `prefix1`
478- * @param private[immutable] val data2 the central 2-dimensional data array
477+ * @param len1 the number of elements in `prefix1`
478+ * @param data2 the central 2-dimensional data array
479479 */
480480private final class Vector2 [+ A ](_prefix1 : Arr1 , private [immutable] val len1 : Int ,
481481 private [immutable] val data2 : Arr2 ,
@@ -579,11 +579,11 @@ private final class Vector2[+A](_prefix1: Arr1, private[immutable] val len1: Int
579579/** 3-dimensional radix-balanced finger tree.
580580 *
581581 * @tparam A the element type of the vector
582- * @param private[immutable] val len1 the number of elements in `prefix1`
583- * @param private[immutable] val prefix2 the 2nd-level prefix data arrays
584- * @param private[immutable] val len12 the combined number of elements in `prefix1` and `prefix2`
585- * @param private[immutable] val data3 the central 3-dimensional data array
586- * @param private[immutable] val suffix2 the 2nd-level suffix data arrays
582+ * @param len1 the number of elements in `prefix1`
583+ * @param prefix2 the 2nd-level prefix data arrays
584+ * @param len12 the combined number of elements in `prefix1` and `prefix2`
585+ * @param data3 the central 3-dimensional data array
586+ * @param suffix2 the 2nd-level suffix data arrays
587587 */
588588private final class Vector3 [+ A ](_prefix1 : Arr1 , private [immutable] val len1 : Int ,
589589 private [immutable] val prefix2 : Arr2 , private [immutable] val len12 : Int ,
@@ -710,14 +710,14 @@ private final class Vector3[+A](_prefix1: Arr1, private[immutable] val len1: Int
710710/** 4-dimensional radix-balanced finger tree.
711711 *
712712 * @tparam A the element type of the vector
713- * @param private[immutable] val len1 the number of elements in `prefix1`
714- * @param private[immutable] val prefix2 the 2nd-level prefix data arrays
715- * @param private[immutable] val len12 the combined number of elements in `prefix1` and `prefix2`
716- * @param private[immutable] val prefix3 the 3rd-level prefix data arrays
717- * @param private[immutable] val len123 the combined number of elements in `prefix1` through `prefix3`
718- * @param private[immutable] val data4 the central 4-dimensional data array
719- * @param private[immutable] val suffix3 the 3rd-level suffix data arrays
720- * @param private[immutable] val suffix2 the 2nd-level suffix data arrays
713+ * @param len1 the number of elements in `prefix1`
714+ * @param prefix2 the 2nd-level prefix data arrays
715+ * @param len12 the combined number of elements in `prefix1` and `prefix2`
716+ * @param prefix3 the 3rd-level prefix data arrays
717+ * @param len123 the combined number of elements in `prefix1` through `prefix3`
718+ * @param data4 the central 4-dimensional data array
719+ * @param suffix3 the 3rd-level suffix data arrays
720+ * @param suffix2 the 2nd-level suffix data arrays
721721 */
722722private final class Vector4 [+ A ](_prefix1 : Arr1 , private [immutable] val len1 : Int ,
723723 private [immutable] val prefix2 : Arr2 , private [immutable] val len12 : Int ,
@@ -865,17 +865,17 @@ private final class Vector4[+A](_prefix1: Arr1, private[immutable] val len1: Int
865865/** 5-dimensional radix-balanced finger tree.
866866 *
867867 * @tparam A the element type of the vector
868- * @param private[immutable] val len1 the number of elements in `prefix1`
869- * @param private[immutable] val prefix2 the 2nd-level prefix data arrays
870- * @param private[immutable] val len12 the combined number of elements in `prefix1` and `prefix2`
871- * @param private[immutable] val prefix3 the 3rd-level prefix data arrays
872- * @param private[immutable] val len123 the combined number of elements in `prefix1` through `prefix3`
873- * @param private[immutable] val prefix4 the 4th-level prefix data arrays
874- * @param private[immutable] val len1234 the combined number of elements in `prefix1` through `prefix4`
875- * @param private[immutable] val data5 the central 5-dimensional data array
876- * @param private[immutable] val suffix4 the 4th-level suffix data arrays
877- * @param private[immutable] val suffix3 the 3rd-level suffix data arrays
878- * @param private[immutable] val suffix2 the 2nd-level suffix data arrays
868+ * @param len1 the number of elements in `prefix1`
869+ * @param prefix2 the 2nd-level prefix data arrays
870+ * @param len12 the combined number of elements in `prefix1` and `prefix2`
871+ * @param prefix3 the 3rd-level prefix data arrays
872+ * @param len123 the combined number of elements in `prefix1` through `prefix3`
873+ * @param prefix4 the 4th-level prefix data arrays
874+ * @param len1234 the combined number of elements in `prefix1` through `prefix4`
875+ * @param data5 the central 5-dimensional data array
876+ * @param suffix4 the 4th-level suffix data arrays
877+ * @param suffix3 the 3rd-level suffix data arrays
878+ * @param suffix2 the 2nd-level suffix data arrays
879879 */
880880private final class Vector5 [+ A ](_prefix1 : Arr1 , private [immutable] val len1 : Int ,
881881 private [immutable] val prefix2 : Arr2 , private [immutable] val len12 : Int ,
@@ -1044,20 +1044,20 @@ private final class Vector5[+A](_prefix1: Arr1, private[immutable] val len1: Int
10441044/** 6-dimensional radix-balanced finger tree.
10451045 *
10461046 * @tparam A the element type of the vector
1047- * @param private[immutable] val len1 the number of elements in `prefix1`
1048- * @param private[immutable] val prefix2 the 2nd-level prefix data arrays
1049- * @param private[immutable] val len12 the combined number of elements in `prefix1` and `prefix2`
1050- * @param private[immutable] val prefix3 the 3rd-level prefix data arrays
1051- * @param private[immutable] val len123 the combined number of elements in `prefix1` through `prefix3`
1052- * @param private[immutable] val prefix4 the 4th-level prefix data arrays
1053- * @param private[immutable] val len1234 the combined number of elements in `prefix1` through `prefix4`
1054- * @param private[immutable] val prefix5 the 5th-level prefix data arrays
1055- * @param private[immutable] val len12345 the combined number of elements in `prefix1` through `prefix5`
1056- * @param private[immutable] val data6 the central 6-dimensional data array
1057- * @param private[immutable] val suffix5 the 5th-level suffix data arrays
1058- * @param private[immutable] val suffix4 the 4th-level suffix data arrays
1059- * @param private[immutable] val suffix3 the 3rd-level suffix data arrays
1060- * @param private[immutable] val suffix2 the 2nd-level suffix data arrays
1047+ * @param len1 the number of elements in `prefix1`
1048+ * @param prefix2 the 2nd-level prefix data arrays
1049+ * @param len12 the combined number of elements in `prefix1` and `prefix2`
1050+ * @param prefix3 the 3rd-level prefix data arrays
1051+ * @param len123 the combined number of elements in `prefix1` through `prefix3`
1052+ * @param prefix4 the 4th-level prefix data arrays
1053+ * @param len1234 the combined number of elements in `prefix1` through `prefix4`
1054+ * @param prefix5 the 5th-level prefix data arrays
1055+ * @param len12345 the combined number of elements in `prefix1` through `prefix5`
1056+ * @param data6 the central 6-dimensional data array
1057+ * @param suffix5 the 5th-level suffix data arrays
1058+ * @param suffix4 the 4th-level suffix data arrays
1059+ * @param suffix3 the 3rd-level suffix data arrays
1060+ * @param suffix2 the 2nd-level suffix data arrays
10611061 */
10621062private final class Vector6 [+ A ](_prefix1 : Arr1 , private [immutable] val len1 : Int ,
10631063 private [immutable] val prefix2 : Arr2 , private [immutable] val len12 : Int ,
0 commit comments