mg6maciej
03/07/2018, 10:56 AMsomeMap.filterValues { it != null }.mapValues { it.value as Any }
or is there anything like someList.filterNotNull()
for `Map`s?ilya.gorbunov
03/07/2018, 12:19 PMkarelpeeters
03/07/2018, 12:46 PM.filter { it is String }
.mg6maciej
03/07/2018, 12:48 PMlistOf<Any>().filterIsInstance<String>()
exists.karelpeeters
03/07/2018, 12:52 PMilya.gorbunov
03/07/2018, 1:30 PMfilter
predicate and the return type, however we haven't yet found the way to express that (@dsavvinov correct me if I'm wrong)karelpeeters
03/07/2018, 1:42 PMmarcinmoskala
03/07/2018, 3:50 PM