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)[]][]
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
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
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
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
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