Re: Stringy Weirdness

2012-08-18 Thread 1100110
But it *doesn't* work just fine without the alias. =P There are very specific things that *make* it work, so I couldn't figure out if it was ever *supposed* to work. Either the bug was the fact that it worked, or the bug was the fact that it didn't work. immutable(char)[immutable(char)[]][]

Re: Stringy Weirdness

2012-08-18 Thread Era Scarecrow
On Saturday, 18 August 2012 at 07:54:18 UTC, 1100110 wrote: Is it supposed to do that or not? that's what I can't decide... =P It doesn't seem to like templates either. A tls variable, Tuple, or a Variant seems to be the only way that string[string][] works. It wants a double? a number a

Re: Stringy Weirdness

2012-08-18 Thread 1100110
Issue 8557 has been added to the database On Sat, 18 Aug 2012 02:35:06 -0500, Simen Kjaeraas wrote: On Sat, 18 Aug 2012 07:11:38 +0200, 1100110 <10equa...@gmail.com> wrote: I haven't been quite able to figure this one out. string[string][] Dict;//sure ok. alias string[string

Re: Stringy Weirdness

2012-08-18 Thread 1100110
On Sat, 18 Aug 2012 02:35:06 -0500, Simen Kjaeraas wrote: On Sat, 18 Aug 2012 07:11:38 +0200, 1100110 <10equa...@gmail.com> wrote: I haven't been quite able to figure this one out. string[string][] Dict;//sure ok. alias string[string][] dict;//Error void main() { Dict

Re: Stringy Weirdness

2012-08-18 Thread Simen Kjaeraas
On Sat, 18 Aug 2012 07:11:38 +0200, 1100110 <10equa...@gmail.com> wrote: I haven't been quite able to figure this one out. string[string][] Dict;//sure ok. alias string[string][] dict;//Error void main() { Dict = [["Cow":"moo" ],["Duck":"quack"]];//cool

Stringy Weirdness

2012-08-17 Thread 1100110
I haven't been quite able to figure this one out. string[string][] Dict;//sure ok. alias string[string][] dict;//Error void main() { Dict = [["Cow":"moo" ],["Duck":"quack"]];//cool Dict ~= ["Dog":"woof"] //No prob. ass