Lilly
myString .map { it.split(";") }
List<List<String>>
split
""
null
List<List<String?>>
ade
it
.map { it.split(";") } .flatten() .map { it.ifBlank { null } }
.map { it.split(";").map { item -> item.ifBlank { null } } }
A modern programming language that makes developers happier.