[Issue 9511] [enh] overloading on attributes

2022-09-08 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9511 RazvanN changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 9511] [enh] overloading on attributes

2013-04-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9511 --- Comment #5 from Martin Nowak c...@dawg.eu 2013-04-08 15:06:44 PDT --- Jacob Carlborg and Andrei found the talk/article I was searching when I opened this enhancement. http://www.artima.com/cppsource/codefeaturesP.html It was mentioned

[Issue 9511] [enh] overloading on attributes

2013-02-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9511 Jonathan M Davis jmdavisp...@gmx.com changed: What|Removed |Added CC|

[Issue 9511] [enh] overloading on attributes

2013-02-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9511 --- Comment #2 from Martin Nowak c...@dawg.eu 2013-02-14 13:37:05 PST --- They're inferred for templated functions Right, I didn't thought of inference. But couldn't it still work with the non-inferred original type. -- Configure issuemail:

[Issue 9511] [enh] overloading on attributes

2013-02-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9511 --- Comment #3 from Martin Nowak c...@dawg.eu 2013-02-14 13:40:26 PST --- Rather, it would be better to make it so that overloads with the same parameters are illegal. Yes, that would be one solution, but I do think this could come in handy

[Issue 9511] [enh] overloading on attributes

2013-02-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9511 --- Comment #4 from Martin Nowak c...@dawg.eu 2013-02-14 18:11:47 PST --- Sometimes tag dispatching is used for the same purpose but it's not automated and definitely looses covariance.