ArrayList
typealias ArrayList<E> = ArrayList<E>
Platform and version requirements: Kotlin 1.1
Constructors
<init> | ArrayList(capacity: Int = 0) Creates an empty ArrayList. ArrayList(elements: Collection<E>) Creates an ArrayList filled from the elements
|