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
The current syntax of our list comprehensions deviates from Ada 202X container aggregates.
Current
for ELEMENT in SEQUENCE => EXPRESSION when CONDITION
Ada 202X
for ELEMENT in SEQUENCE when CONDITION => EXPRESSION
RecordFlux
for ELEMENT in SEQUENCE if CONDITION => EXPRESSION
I think we should use the same syntax as Ada 202X if we do not have a good reason for the deviation.
The text was updated successfully, but these errors were encountered:
Change syntax of list comprehensions
ed4c875
Ref. #702
be72c8a
9546084
treiher
Successfully merging a pull request may close this issue.
The current syntax of our list comprehensions deviates from Ada 202X container aggregates.
Current
Ada 202X
RecordFlux
I think we should use the same syntax as Ada 202X if we do not have a good reason for the deviation.
The text was updated successfully, but these errors were encountered: