Re: Basic Syntax Question

2013-04-02 Thread WhatMeWorry
On Tuesday, 2 April 2013 at 16:52:17 UTC, John Colvin wrote: int[string][double[int[]]] a; I'm confused, did you find that definition somewhere or did you write it yourself? I found the above in an example in std.conv; Thank you, but I can assure you my brain is not powerful enough to co

Re: Basic Syntax Question

2013-04-02 Thread Ali Çehreli
On 04/02/2013 09:24 AM, WhatMeWorry wrote:> > I don't suppose there is a digital.D.beginner forum? > > I've been staring at this definition for about an hour and I still can't > decode it. > > int[string][double[int[]]] a; // alias usually makes the syntax cleaner but that is still pretty crazy.

Re: Basic Syntax Question

2013-04-02 Thread John Colvin
On Tuesday, 2 April 2013 at 16:51:45 UTC, Tobias Pankrath wrote: On Tuesday, 2 April 2013 at 16:24:46 UTC, WhatMeWorry wrote: I don't suppose there is a digital.D.beginner forum? There is D.learn. Scroll down in the webinterface :-) This is in D.learn already. int[string} a // would be a

Re: Basic Syntax Question

2013-04-02 Thread John Colvin
On Tuesday, 2 April 2013 at 16:24:46 UTC, WhatMeWorry wrote: I don't suppose there is a digital.D.beginner forum? I've been staring at this definition for about an hour and I still can't decode it. int[string][double[int[]]] a; // ... auto b = to!(short[wstring][string[double[]]])(a); // t

Re: Basic Syntax Question

2013-04-02 Thread Tobias Pankrath
On Tuesday, 2 April 2013 at 16:24:46 UTC, WhatMeWorry wrote: I don't suppose there is a digital.D.beginner forum? There is D.learn. Scroll down in the webinterface :-) I've been staring at this definition for about an hour and I still can't decode it. int[string][double[int[]]] a; // Re

Basic Syntax Question

2013-04-02 Thread WhatMeWorry
I don't suppose there is a digital.D.beginner forum? I've been staring at this definition for about an hour and I still can't decode it. int[string][double[int[]]] a; // ... auto b = to!(short[wstring][string[double[]]])(a); // this doesn't help either int[string} a // would be an Asso