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
Given the dict returned by splitdef it would be useful to have a function the generate a Expr(:call,... to the function that is defined.
splitdef
Expr(:call,...
e.g.
julia> k = splitdef(:(f(x::Int) = 2x)) Dict{Symbol,Any} with 4 entries: :args => Any[:(x::Int)] :body => quote… :name => :f :head => :(=) julia> call_expr(k) == :(f(x))
This is basically a much simpler version of combinedef
combinedef
The text was updated successfully, but these errors were encountered:
That's reasonable. I'd have to think about naming a little more here
Sorry, something went wrong.
In a meaningful way #17 addresses this. Not entirely, though.
No branches or pull requests
Given the dict returned by
splitdef
it would be useful to have a function the generate a
Expr(:call,...
to the function that is defined.e.g.
This is basically a much simpler version of
combinedef
The text was updated successfully, but these errors were encountered: