You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When constructing options it would occasionally be useful to define not only values, but also keys with expressions. Currently the only way to do this that I am aware of is
let o =@pgf{}
push!(o, v =>nothing)
o
end
A possible syntax could be $ interpolation, as in
line_styles = [:solid, :dashed, :dotted]
[@pgf({ $l }) for l in line_styles] # hypothetical feature and syntax
The text was updated successfully, but these errors were encountered:
When constructing options it would occasionally be useful to define not only values, but also keys with expressions. Currently the only way to do this that I am aware of is
A possible syntax could be
$
interpolation, as inThe text was updated successfully, but these errors were encountered: