Colton Idle
11/27/2019, 4:54 AMif (myItem != null) { //do something }
makes sense in kotlin as it does in java. Is using let{}
really needed? Would someone say that my if statement is not idiomatic? I like to follow the 90 day rule. If I come back to the code in 90 days... which one will I understand? I feel that most would choose the if.Pete
11/27/2019, 5:01 AMMatteo Mirk
11/27/2019, 11:57 AMColton Idle
11/27/2019, 8:21 PMlet{}
instead of ?let{}
and got completely different behavior. Had no idea. 😄 Still taking some time to get used to all of these block functions.SiebelsTim
11/28/2019, 7:06 PM