-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Feature Idea: dot syntax for function calls (and code completion ) #37993
Comments
Your But...why should we privilege the first argument? Julia itself doesn't, and it's a crucial advantage that it does not. If your tab key is feeling neglected, I'd much rather see something like ?(x, yTAB start listing options for |
I completely understand this argument, and it is often discussed as an advantage of "dot-style" object-oriented languages. But adding this to julia is really not realistic. Imagine I filed an issue with python saying "I don't like the dots, can you please allow function-call syntax for all methods?" I don't think this is "just" syntactic sugar. It's arguably misleading for e.g. |
One syntax that I've toyed with in my head is named infix operator syntax: i.e. the generalization of |
If the key point is tab-completion, doesn't |
Isn't this a duplicate of #31779? |
Thanks for all the feedback. I see that it would take more work than anticipated. I guess the discoverability aspect could be solved in the REPL/IDE without changing the language:
sorry I don't understand this objection.
Since this idea is not received worth much excitement the issue can probably be closed. Just for the record, here is Haskells new take on the dot syntax: So the argument in the 'duplicate' issue that this would turn Julia into an OOP language seems only partially valid. A more philosophical question, maybe not applicable to Julia: could the concepts of functions and properties be merged? so that |
Closing as a duplicate; in general, we don't like to have the same discussion in multiple issues. You can add new comments to old issues, even if they are closed, if you feel that there is something that hasn't been said there. |
* ?(x, y)TAB completes methods accepting x, y Closes #30052 xref #38704 xref #37993 Co-authored-by: Jameson Nash <[email protected]>
One limitation of the functional approach is discoverability: which functions can be applied to a given type? This is not necessary however: We (should) know all the functions which take an object of given type as first argument. This leads to the possibility of code completion:
The important point is that it doesn't change the fundamentals of the language at all**, it's just syntactic sugar with the huge benefit of discoverability in the REPL. It might also hugely increase adoption.
Corollary: An inverse 'methods' function which lists all the methods for a given type (can be huge).
(** I've read https://discourse.julialang.org/t/psa-julia-is-not-at-that-stage-of-development-anymore/44872 )
The text was updated successfully, but these errors were encountered: