kevinmost
07/25/2017, 3:16 PMstuff(): Job = launch(UI) { ... }
kingsley
07/25/2017, 3:17 PMDeferred<MutableList<SomeClass>>
fun
uhe
07/25/2017, 3:21 PMkingsley
07/25/2017, 3:22 PMuhe
07/25/2017, 3:23 PMfun publicFun() = privateFun()
and then change the implementation of privateFun
so it returns something differentkingsley
07/25/2017, 3:24 PMfun a() = b
and do a quickfix to apply the type. Forcing me to put the type beforehand in return forces me to think too deeply about itkevinmost
07/25/2017, 3:36 PMpublic void a() { return someObject; }
and use the quickfix to change the return to the proper type. So I don't think that'd be an issuekingsley
07/25/2017, 7:14 PM