well, it’s from ``` val values: List<Int...
# getting-started
d
well, it’s from
Copy code
val values: List<Int> = textValue
                .split(" ")
                .map { valuesMapping[it] }
so it’s a
List<Int?>
. Anyway my question was more about the
for
+ internal
if
.