Whats the difference between taking a Modifier tha...
# compose
c
Whats the difference between taking a Modifier that's already been created and chaining onto it like
existing.doThing()
vs
existing.then(Modifier.doThing())
?
j
Nothing
1
The first one executes less code, but not meaningfully
❤️ 2