The Android documentation advises that Composable functions shall have no side effects, and one of their reasons is that "Composable functions could be run in parallel" (
https://developer.android.com/develop/ui/compose/mental-model#parallel)
Compose doesn't do that (yet), but I'd love to know whether the Compose team is still considering doing that, and how big its impact on performance could be?