Makes variance annoying in Kotlin... seems I need ...
# android
d
Makes variance annoying in Kotlin... seems I need something like
Copy code
@Suppress("UNCHECKED_CAST")
fun Parcel.writeTypedSparseArray(value: SparseArray<*>) = writeSparseArray(value as SparseArray<Any>)