Search

April 29, 2008
Learn »
...if it is correct. Seeing as
the typedef maps to a template instantiation that would...
April 29, 2008
Learn »
...case than what you want, namely the typedef rater than the name of the template...
April 29, 2008
Learn »
...foo(T)
{
	T value;
}

template bar(T)
{
	typedef foo!(T) bar;
}

void main(string[] args...
April 27, 2008
Issues »
...new spec.

int a;
int b = 1;
typedef int t = 2;
t c;
t d...
April 27, 2008
Issues »
...new spec.

int a;
int b = 1;
typedef int t = 2;
t c;
t d...
April 18, 2008
General »
Hello.
I've got following array:

typedef iObject[] paramList;

and following object architecture:

abstract class...
April 13, 2008
General »
...alias type works analogously to C's typedef. An alias declaration gives an alternate name...
April 06, 2008
GDC »
...29 +553,9 @@

           while ( (ttd = cast(TypeInfo_Typedef) ti) !is null )
               ti = ttd.base;
-
-           if...
April 01, 2008
GDC »
...28 +516,128 @@
            while ( (ttd = cast(TypeInfo_Typedef) ti) !is null )
                ti = ttd.base;

-           if...
March 29, 2008
General »
...but you can do this:

class Buffer {
    typedef int BufSize_t = 4096;
    BufSize_t bufsize...
216 217 218 219 220 221 222 223 224 225 226
Next ›   Last »