There is a Java function with signature: `public f...
# announcements
m
There is a Java function with signature:
public final void writeSparseArray(SparseArray<Object> val)
If I use it in Kotlin then code completion shows me that the parameter has
SparseArray<Any!>!
type. What is this single
!
?
!!
is a documented operator but I can’t have for example
val i: Int! = 0
declaration, so what does it mean?