Nick Kleban
Lambda memoization is done automatically by the compiler by generating a remember call implicitly based on the stable values captured by the lambda.
@Composable override fun SomeScreen() { val someLabmda = { /* No params, 1 CompositionLocal call*/ } SomeComponent( //Composable function ..., someLabmda ) }
A modern programming language that makes developers happier.