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
I want to match things like :(x+y) basically anything quoted, how can i do that?
i tried this: ff(:R{:, quoted}), didn't work
Thanks
The text was updated successfully, but these errors were encountered:
Either :quoted or :(quoted) will work.
:quoted
:(quoted)
julia> @metafunction f(:(quoted)) = quoted f (generic function with 1 method) julia> f(:(:(x+y))) :(x + y)
julia> @metafunction g(:(x + y)) = x,y g (generic function with 1 method) julia> g(:(:(1 + 2))) (1, 2)
But see #20, I am still unsure if :quoted should match the literal :quoted, or stay the way it is.
Sorry, something went wrong.
No branches or pull requests
I want to match things like :(x+y)
basically anything quoted, how can i do that?
i tried this:
ff(:R{:, quoted}), didn't work
Thanks
The text was updated successfully, but these errors were encountered: