kirillrakhman
07/13/2017, 10:00 AMmap
and joinToString
which looks harmless but actually the lambda in map
is inline while in joinToString
it's not. Is this an issue? I understand that the extra lambda allocation is probably compensated by the saved List
allocation but the code size and method count grows a little.mglukhikh
07/18/2017, 3:41 PMmap
+ joinToString
combination?kirillrakhman
07/19/2017, 8:46 AM