uhe
01/18/2018, 9:54 AMval foo = mapOf<String, String>()[""] ?: longAssMethodNameWithLongAssParameters(lookAtMeImSoLong = "so very long!") inlineInfixFun { return }
becomes
val foo = mapOf<String, String>()[""]
?: longAssMethodNameWithLongAssParameters(lookAtMeImSoLong = "so very long!")
inlineInfixFun { return }
which doesn't compile any longerkirillrakhman
01/18/2018, 12:59 PMuhe
01/18/2018, 3:37 PM?:
is only executed when the left side is null, it shouldn't matter, right?