Re: support UFCS with fully qualified function names

2013-05-20 Thread bearophile
Timothee Cour: auto a="".(std.path.join)("\n"); I suggest to present it in the main D newsgroup. And if people don't hate it, to later write an enhancement request in bugzilla. Bye, bearophile

Re: support UFCS with fully qualified function names

2013-05-20 Thread bearophile
Timothee Cour: I'd like to be able to use UFCS with fully qualified function names. auto a="".(std.path.join)("\n"); It seems an acceptably-looking syntax. But maybe D.learn is not the best place to discuss new D syntax. Regarding new UFCS-related syntax, I sometimes wish for: alias

support UFCS with fully qualified function names

2013-05-20 Thread Timothee Cour
I'd like to be able to use UFCS with fully qualified function names. A typical use case is to disambiguate , as in the following case: import std.path; import std.string; void main(){ //Error: std.path.join()(const(char)[] p1, const(char)[] p2, const(char[ ])[] more...) at ... conflicts with