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
Sometimes, it is convenient to use multiple transformers/filters, such as:
X --> f(_) --[ any such that P(Z, _) ]--> Y
This can simply be expanded to:
X --> f(_) --> var __NEW_VAR : TYPE __NEW_VAR --[ any such that P(Z, _) ]--> Y
This will require knowing what type __NEW_VAR is supposed to be, which should be easy to infer from the return type of f.
__NEW_VAR
f
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometimes, it is convenient to use multiple transformers/filters, such as:
This can simply be expanded to:
This will require knowing what type
__NEW_VAR
is supposed to be, which should be easy to infer from the return type off
.The text was updated successfully, but these errors were encountered: