Search

September 22, 2007
General »
You don't add keywords for things that have only come up "several times".  If...
September 22, 2007
General »
...have a third keyword besides alias and typedef.
One is for aliasing a class (alias...
September 22, 2007
General »


I feel your pain.

import util.ex;
// adds trailing Exception for me b/c I...
September 22, 2007
General »
One alternative is to put the class's body into a template and then use...
September 21, 2007
General »
I run into it all the time when I want to create a new Exception...
September 21, 2007
General »
coxalan Wrote:

September 21, 2007
General »
...using typedef:

import std.stdio;

class foo {
    static uint a;
}

typedef foo foo1;
typedef foo...
September 21, 2007
GDC »
...0;
}

***********************************************
$ gdc typedef_struct_literals.d
typedef_struct_literals.d:11: function typedef_struct_literals...
September 20, 2007
Learn »
...can only contain 'declarations' which means;

Declaration:
        typedef Decl
        alias Decl
        Decl

Decl:
        StorageClasses Decl...
September 20, 2007
General »
...select = -1;
  else
    const int select = -1;
}

typedef rgb back_rgb;
back_rgb Back(rgb...
228 229 230 231 232 233 234 235 236 237 238
Next ›   Last »