tipsy
06/12/2017, 4:20 PMHello guys, I'm trying to decide if should I use if (value != null) {value.doSomething()} or value?.let {it.doSomething()}when i started writing kotlin i used
let a lot, but i've gone back to only using if now. it's just easier to understand for anyone reading the code