[Issue 22119] [Functions] Function Overloading clarity for int[] and strings

2021-07-19 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=22119 mhh changed: What|Removed |Added CC||maxha...@gmail.com --- Comment #1 from mhh --- Is thi

[Issue 22119] [Functions] Function Overloading clarity for int[] and strings

2021-07-30 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=22119 --- Comment #2 from crazymonk...@gmail.com --- (In reply to mhh from comment #1) > Is this not implied by the existing overload matching rules? You were part of the conversation on discord and didnt see it either? its implied if I understand the rule

[Issue 22119] [Functions] Function Overloading clarity for int[] and strings

2021-08-02 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=22119 --- Comment #3 from anonymous4 --- A more meaningful example: --- struct Address { this(in char[] host, int port){} this(ubyte[4] ip, int port){} } auto addr=Address([127,0,0,1],80); --- I wanted overloads for host name and ip addre

[Issue 22119] [Functions] Function Overloading clarity for int[] and strings

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=22119 Iain Buclaw changed: What|Removed |Added Priority|P3 |P4 --