On Monday, November 13, 2017 12:40:39 bauss via Digitalmars-d-learn wrote:
> On Monday, 13 November 2017 at 01:12:59 UTC, Adam D. Ruppe wrote:
> > On Monday, 13 November 2017 at 01:03:17 UTC, helxi wrote:
> >> In this program, casting using to does not work as intended
> >> (returning 23/11) on the
On Monday, 13 November 2017 at 01:12:59 UTC, Adam D. Ruppe wrote:
On Monday, 13 November 2017 at 01:03:17 UTC, helxi wrote:
In this program, casting using to does not work as intended
(returning 23/11) on the struct. However, calling opCast
directly seems to do the job. Why is that?
to!strin
On Monday, 13 November 2017 at 01:03:17 UTC, helxi wrote:
In this program, casting using to does not work as intended
(returning 23/11) on the struct. However, calling opCast
directly seems to do the job. Why is that?
to!string calls a function called `string toString() {}` on the
struct, no