How to initialize an empty ArrayList in Kotlin? [duplicate]
According to the api-doc: val list = arrayListOf<Int>() This is also mentioned here: How to initialize List in Kotlin? .
According to the api-doc: val list = arrayListOf<Int>() This is also mentioned here: How to initialize List in Kotlin? .