zmunm
08/14/2020, 6:39 AMa?.let { 1.plus(1) } // can be replaced with `if (a == null) 1.plus(1)`
to
a?:let { 1.plus(1) } // can be replaced with `if (a == null) 1.plus(1)`
a?.let { 1.plus(1) } // can be replaced with `if (a != null) 1.plus(1)`
Brais Gabin
08/14/2020, 6:49 AMBrais Gabin
08/14/2020, 6:50 AMzmunm
08/14/2020, 6:54 AMBrais Gabin
08/14/2020, 6:58 AM