@@ -44,7 +44,7 @@ abstract class VCFloatCompanion[T <: VCFloatPrototype] extends ClassTag[T] {
44
44
def productPrefix$extension (underlying : Float ): String
45
45
}
46
46
47
- final class VCFloatArray [T <: VCFloatPrototype ] private (val arr : Array [Float ], val ct : VCFloatCompanion [T ])
47
+ final class VCFloatArray [T <: VCFloatPrototype ] (val arr : Array [Float ], val ct : VCFloatCompanion [T ])
48
48
extends VCArrayPrototype [T ] {
49
49
def this (ct : VCFloatCompanion [T ], sz : Int ) =
50
50
this (new Array [Float ](sz), ct)
@@ -95,7 +95,7 @@ abstract class VCObjectCompanion[T <: VCObjectPrototype] extends ClassTag[T] {
95
95
def productPrefix$extension (underlying : Object ): String
96
96
}
97
97
98
- final class VCObjectArray [T <: VCObjectPrototype ] private (val arr : Array [Object ], val ct : VCObjectCompanion [T ])
98
+ final class VCObjectArray [T <: VCObjectPrototype ] (val arr : Array [Object ], val ct : VCObjectCompanion [T ])
99
99
extends VCArrayPrototype [T ] {
100
100
def this (ct : VCObjectCompanion [T ], sz : Int ) =
101
101
this (new Array [Object ](sz), ct)
@@ -148,7 +148,7 @@ abstract class VCShortCompanion[T <: VCShortPrototype] extends ClassTag[T] {
148
148
def productPrefix$extension (underlying : Short ): String
149
149
}
150
150
151
- final class VCShortArray [T <: VCShortPrototype ] private (val arr : Array [Short ], val ct : VCShortCompanion [T ])
151
+ final class VCShortArray [T <: VCShortPrototype ] (val arr : Array [Short ], val ct : VCShortCompanion [T ])
152
152
extends VCArrayPrototype [T ] {
153
153
def this (ct : VCShortCompanion [T ], sz : Int ) =
154
154
this (new Array [Short ](sz), ct)
@@ -202,7 +202,7 @@ abstract class VCLongCompanion[T <: VCLongPrototype] extends ClassTag[T] {
202
202
def productPrefix$extension (underlying : Long ): String
203
203
}
204
204
205
- final class VCLongArray [T <: VCLongPrototype ] private (val arr : Array [Long ], val ct : VCLongCompanion [T ])
205
+ final class VCLongArray [T <: VCLongPrototype ] (val arr : Array [Long ], val ct : VCLongCompanion [T ])
206
206
extends VCArrayPrototype [T ] {
207
207
def this (ct : VCLongCompanion [T ], sz : Int ) =
208
208
this (new Array [Long ](sz), ct)
@@ -255,7 +255,7 @@ abstract class VCIntCompanion[T <: VCIntPrototype] extends ClassTag[T] {
255
255
def productPrefix$extension (underlying : Int ): String
256
256
}
257
257
258
- final class VCIntArray [T <: VCIntPrototype ] private (val arr : Array [Int ], val ct : VCIntCompanion [T ])
258
+ final class VCIntArray [T <: VCIntPrototype ] (val arr : Array [Int ], val ct : VCIntCompanion [T ])
259
259
extends VCArrayPrototype [T ] {
260
260
def this (ct : VCIntCompanion [T ], sz : Int ) =
261
261
this (new Array [Int ](sz), ct)
@@ -306,7 +306,7 @@ abstract class VCDoubleCompanion[T <: VCDoublePrototype] extends ClassTag[T] {
306
306
def productPrefix$extension (underlying : Double ): String
307
307
}
308
308
309
- final class VCDoubleArray [T <: VCDoublePrototype ] private (val arr : Array [Double ], val ct : VCDoubleCompanion [T ])
309
+ final class VCDoubleArray [T <: VCDoublePrototype ] (val arr : Array [Double ], val ct : VCDoubleCompanion [T ])
310
310
extends VCArrayPrototype [T ] {
311
311
def this (ct : VCDoubleCompanion [T ], sz : Int ) =
312
312
this (new Array [Double ](sz), ct)
@@ -357,7 +357,7 @@ abstract class VCBooleanCompanion[T <: VCBooleanPrototype] extends ClassTag[T] {
357
357
def productPrefix$extension (underlying : Boolean ): String
358
358
}
359
359
360
- final class VCBooleanArray [T <: VCBooleanPrototype ] private (val arr : Array [Boolean ], val ct : VCBooleanCompanion [T ])
360
+ final class VCBooleanArray [T <: VCBooleanPrototype ] (val arr : Array [Boolean ], val ct : VCBooleanCompanion [T ])
361
361
extends VCArrayPrototype [T ] {
362
362
def this (ct : VCBooleanCompanion [T ], sz : Int ) =
363
363
this (new Array [Boolean ](sz), ct)
@@ -412,7 +412,7 @@ abstract class VCCharCompanion[T <: VCCharPrototype] extends ClassTag[T] {
412
412
def productPrefix$extension (underlying : Char ): String
413
413
}
414
414
415
- final class VCCharArray [T <: VCCharPrototype ] private (val arr : Array [Char ], val ct : VCCharCompanion [T ])
415
+ final class VCCharArray [T <: VCCharPrototype ] (val arr : Array [Char ], val ct : VCCharCompanion [T ])
416
416
extends VCArrayPrototype [T ] {
417
417
def this (ct : VCCharCompanion [T ], sz : Int ) =
418
418
this (new Array [Char ](sz), ct)
@@ -463,7 +463,7 @@ abstract class VCByteCompanion[T <: VCBytePrototype] extends ClassTag[T] {
463
463
def productPrefix$extension (underlying : Byte ): String
464
464
}
465
465
466
- final class VCByteArray [T <: VCBytePrototype ] private (val arr : Array [Byte ], val ct : VCByteCompanion [T ])
466
+ final class VCByteArray [T <: VCBytePrototype ] (val arr : Array [Byte ], val ct : VCByteCompanion [T ])
467
467
extends VCArrayPrototype [T ] {
468
468
def this (ct : VCByteCompanion [T ], sz : Int ) =
469
469
this (new Array [Byte ](sz), ct)
0 commit comments