Striped Skunks; source: Kyle Breckenridge via nwf.orgUsing ‘it’ everywhereArguments in single argument lambdas are implicitly named it in Kotlin. This is helpful because it’s(pun intended) short and using it makes more sense than using $, $0 or whatever default names most other languages use. But it’s use should be restricted to really trivial cases and we should prefer giving explicit argument na

