elizarov
07/14/2019, 8:36 AMzsmb
07/14/2019, 10:43 AMcollect { value -> pdateUI(value) }
elizarov
07/14/2019, 2:34 PMdave08
07/14/2019, 2:37 PMcatch<IOException> { ... }
if someone needs to catch a specific exception instead of having to catch and rethrow the rest?elizarov
07/14/2019, 2:40 PMcatch<Throwable>
. We might improve this part of the language in the future, though.Antanas A.
07/16/2019, 9:24 AMclass A<T = Throwable> { ... }
elizarov
07/16/2019, 11:07 AM