Why are `androidx.compose.ui.util.fastAny` and `androidx.compose.ui.util.fastForEach` not available?
s
Why are
androidx.compose.ui.util.fastAny
and
androidx.compose.ui.util.fastForEach
not available?
βœ… 1
r
These are only β€œfast” for collections that support efficient random access, they would therefore not be well suited as arbitrary public APIs
s
Ok, so you stripped them? I noticed that because I tried to use a framework made for Jetpack Compose Android in my code. πŸ˜‰
m
You can use them if you add this dependency
Copy code
implementation(compose("org.jetbrains.compose.ui:ui-util"))
πŸ‘ 2
s
Thank you πŸ™‚
679 Views