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
{{ message }}
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.
Prohibiting the use of recursions, including tail recursions.
Because dart lack off support tail call optimisation and you can obtain Maximum call stack size exceededError.
And after that recursion is more resource demanding then normal loops.
Prohibiting the use of recursions, including tail recursions.
Because dart lack off support tail call optimisation and you can obtain
Maximum call stack size exceededError
.And after that recursion is more resource demanding then normal loops.
Dartpad example
The text was updated successfully, but these errors were encountered: