MutableList vs ArrayList¶
MutableList is ArrayList in Kotlin currently.
Create an Empty MutableList¶
Below is the most idiomatical way to create an empty mutable list in Kotlin.
Hands on krangl in Kotlin
Use Tablesaw with Kotlin
Use Kotlin in a Scala Project
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
Methods of a Kotlin object can be called in a Scala project by
KotlinObject.INSTANCE.methodToCall()
-
You might need to provide the Kotlin standard library
kotlin-stdlib.jar
in order to run …