Is it intentional that the `compose` and `andThen`...
# arrow
s
Is it intentional that the
compose
and
andThen
functions aren't inline and don't appear to support composition of suspending functions?
y
They can't be inline. Well, they could be
crossinline
, but that wouldn't support suspend functions either. That's because you have to return those functions, and so they can't be performed in place
s
ah yep, though what about suspend variants like those that exist for the
partially
functions?