We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
label
In Dart, label is supported for level jump. However, there is almost no description in the Dart documentation website.
This is the only mention I found: https://dart.dev/language/branches#:~:text=%3A%0A%20%20%20%20executeOpen()%3B-,continue%20newCase%3B,-//%20Continues%20executing%20at
Label is really simple and can be used as an advanced method to optimize performance: https://github.com/medz/alien-signals-dart/blob/main/lib/src/system.dart#L257
I am using the label function to eliminate recursive calls, so the performance of the propagate function is improved by about 10%.
propagate
To be honest, it is difficult to find the description and support of labels in the dart documentation.
I hope to see information and instructions about labels in https://dart.dev/language/branches. It also indicates that Dart supports this feature.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What information needs to be added?
In Dart,
label
is supported for level jump. However, there is almost no description in the Dart documentation website.This is the only mention I found: https://dart.dev/language/branches#:~:text=%3A%0A%20%20%20%20executeOpen()%3B-,continue%20newCase%3B,-//%20Continues%20executing%20at
Label is really simple and can be used as an advanced method to optimize performance:
https://github.com/medz/alien-signals-dart/blob/main/lib/src/system.dart#L257
I am using the label function to eliminate recursive calls, so the performance of the
propagate
function is improved by about 10%.To be honest, it is difficult to find the description and support of labels in the dart documentation.
Where should this new content appear?
I hope to see information and instructions about labels in https://dart.dev/language/branches. It also indicates that Dart supports this feature.
I would like to fix this problem.
The text was updated successfully, but these errors were encountered: