You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if you omit a case branch, then you may encounter a pattern-matching failure at runtime. Instead, missing case branches should be checked by the compiler, which would allow for the check on the final case branch to be omitted at runtime. This would, for example, improve the performance of if forms.
The text was updated successfully, but these errors were encountered:
Currently, if you omit a case branch, then you may encounter a pattern-matching failure at runtime. Instead, missing case branches should be checked by the compiler, which would allow for the check on the final case branch to be omitted at runtime. This would, for example, improve the performance of
if
forms.The text was updated successfully, but these errors were encountered: