Prefer Function Reference over Lambda in Kotlin? Wrong!
You may think Kotlin function reference runs faster than Kotlin lambda, but wrong! In fact, Kotlin lambda runs 2x faster!
Using lambda as callback is very common in Jetpack compose, but do you know you can also use function reference to replace the lambda?