lovis
06/21/2017, 10:00 AMwhen(viewID) {
R.id.some -> fun3()
}
...
fun fun3() {
fun1()
fun2()
}
mg6maciej
06/21/2017, 10:02 AMfun3
gives the meaning and context for why is fun1
and fun2
called together and the reason fun1
is before and not after fun2
.lovis
06/21/2017, 10:03 AMmg6maciej
06/21/2017, 10:03 AM