rook
09/07/2018, 9:16 PMList<String?> even though I’m filtering for null.
someListOfNullableStrings.map { it?.let { str -> Foo(str) } }.filter { it != null }nwh
09/07/2018, 9:17 PMfilterNotNull()rook
09/07/2018, 9:18 PMrook
09/07/2018, 9:19 PMmapNotNull { } is a thing too