toList

open fun <T> toList(items: Array<T>): List<T>(source)
open fun <T> toList(items: Iterable<out T>): List<T>(source)

Wraps the given items in a mutable list.