Why are `androidx.compose.ui.util.fastAny` and `an...
# compose-desktop
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 🙂
674 Views