-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
@with
macro clashes with Base.@with
in Julia 1.11+
#364
Comments
This is indeed a problematic issue. Probably we need to un-export |
This is definitely a bummer. Honestly, it seems like a pretty niche application (apply a function with in a temporary context) to use for such an obvious name. We should brainstorm a renaming. R calls this feature |
I would go for |
Thats a good idea. And will likely be the answer. |
@bkamins I've thought about this and decided Maybe |
|
That is a bummer that
I understand that you don't like the repeated
|
We could do
Maybe |
Julia 1.11 is the first version to export
Base.@with
:This causes a name conflict with
DataFramesMeta.@with
(i.e., error when the latter used in a module). MWE:The text was updated successfully, but these errors were encountered: