Like this:``` fun fn(list: List<String>) { ...
# stdlib
o
Like this:``` fun fn(list: List<String>) { val (less, more) = list.partition { it.length < 10 } } ```