gregd
12/17/2016, 11:43 AMcombineLatest(v1, v2, v3, {v1, v2, v3 -> v1 && v2 && v3})
you get combineLatest(v1, v2, v3, {$0 && $1 && $2})
. Also, $n
is more intuitive for most developers (the same is used in Terminal etc.), and literally everyone I know who started using Kotlin is surprised with the it
convention.