https://kotlinlang.org logo
m

masted

02/06/2017, 7:08 AM
you can get resulting
CharArray
of
toCharArray
function as list by
asList()
that will produce
List<Char>
.
"foo".toCharArray().asList()
. There is no special
CharList
type.
👍 2