I just migrated to alpha08 and then : `androidx.co...
# compose
i
I just migrated to alpha08 and then :
androidx.compose.ui.util.fastAny
and
androidx.compose.ui.util.fastForEach
can't resolve. The util lib need i resolve manually?
a
androidx.compose.ui.ui-util
1
i
Thanks Allan!
a
seems everyone’s updating to alpha08 at the same time lol
c
what ? i've been using the slow foreach all this time like an idiot ??
a
not slow, just not “fast” 😄
😄 1
c
more seriously what's the point of these ?
a
😄 3
forEach() and any() use an iterator that can be
avoid when using fastForEach() and fastAny(). Also
added a fastForEachIndexed() for uses of that method.
🙌 2
c
ah right I see it can be avoided because it's specific to
List
, thanks !