is there a function to print out non null array of...
# announcements
c
is there a function to print out non null array of int in Kotlin?
[1,2,null]
will print
[1,2]
h
I'd recommend #C0B8MA7FA for questions as these. simple smile You can use it with a list filter:
listOfIntsAndNulls.filterNotNull()