Is there a way to mark a function as not skippable...
# compose
e
Is there a way to mark a function as not skippable, so that its parameters aren't checked for equality? Asking in the context of this, specifically:
If you do that <adding List to stability configuration file>, your composable might be slower than if the List parameter was unstable!
b
Yes, either annotate it with
@NonRestartableComposable
or
@NonSkippableComposable
thank you color 1
1