Hey folks.
I’m currently struggling with this problem and hope to find some assistance from the Kotline experts here
I wonder why its not possible to pass the varargs array to another generic class even though the type arguments are the same? Calling generic functions works fine.
@JvmInline
value class MyArray<T>(val value: Array<T>) {
constructor(vararg values: T) : this(values) // (1)
}
class MyArray2<T>(val value: Array<T>) {
constructor(vararg values: T) : this(values) // (2)
}
@JvmInline
value class MyArray3<T>(val value: Array<T>) {
constructor(size:Int) : this(arrayOfNulls<T>(size)) // (3) (4)
constructor() : this(emptyArray<T>()) // (5)
}
fun <T> arrayFun(x:Array<T>) { }
fun <T> varargFun(vararg x:T) { }
class MyList<T> {
private var data: MyArray<T>
private var data2: MyArray2<T>
private var data3: MyArray3<T>
constructor(vararg items: T) {
this.data = MyArray(items) // (6)
this.data = MyArray<T>(items) // (7)
this.data = MyArray<T>(*items)
this.data2 = MyArray2(items) // (8)
this.data2 = MyArray2<T>(items) // (9)
this.data2 = MyArray2<T>(*items)
this.data3 = MyArray3(items) // (10)
this.data3 = MyArray3<T>(1)
this.data3 = MyArray3<T>()
arrayFun(items)
varargFun(*items)
}
}
Leads to:
(1) Argument type mismatch: actual type is 'Array<CapturedType(out T)>', but 'Array<T (of class MyArray<T>)>' was expected.
(2) Argument type mismatch: actual type is 'Array<CapturedType(out T)>', but 'Array<T (of class MyArray2<T>)>' was expected.
(3) None of the following candidates is applicable: constructor<T>(value: Array<T>): MyArray3<T> constructor<T>(size: Int): MyArray3<T>
(4) Cannot use 'T' as reified type parameter. Use a class instead.
(5) Cannot use 'T' as reified type parameter. Use a class instead.
(6) Assignment type mismatch: actual type is 'MyArray<CapturedType(out T)>', but 'MyArray<T (of class MyList<T>)>' was expected.
(7) Argument type mismatch: actual type is 'Array<CapturedType(out T)>', but 'Array<T (of class MyList<T>)>' was expected.
(8) Assignment type mismatch: actual type is 'MyArray2<CapturedType(out T)>', but 'MyArray2<T (of class MyList<T>)>' was expected.
(9) Argument type mismatch: actual type is 'Array<CapturedType(out T)>', but 'Array<T (of class MyList<T>)>' was expected.
(10) Assignment type mismatch: actual type is 'MyArray3<CapturedType(out T)>', but 'MyArray3<T (of class MyList<T>)>' was expected.
It feels like most constructs in this example should be valid but I can’t get the outer Array<T>
into my wrapper class without facing errors. MyArray3
shows a my preferred structure.
I currently try to build workarounds with unchecked casts and using Any
but it starts to get pretty dirty. As the consuming code is generated I am a bit limited with the expressions I can write.