Search

August 15, 2006
Issues »
...Associative Arrays seem to work correctly.)
Example:
-----
typedef int ft(int);

ft[] x;  // is allowed...
August 15, 2006
Issues »
...nocompile/t/typedef_17_A.d http://dstress.kuehne.cn/nocompile/t/typedef_17_B...
August 08, 2006
General »
...else
	const int IsFunctionT = 0;
}

void test()
{
    typedef int fp(int);

    assert(IsFunctionT!(fp) == 1...
August 02, 2006
General »
...is wrong with ubyte[] or a suitable typedef?

I can't see how that would...
August 02, 2006
Learn »
...don't try to create an alias/typedef to a function type.  And there's...
August 01, 2006
Learn »
...this?  I can't.  Just declare a
typedef or alias of the function pointer type...
July 31, 2006
Learn »
extern (C) {
    typedef void FILE;
    FILE* popen(char* cmd, char* type);
    int pclose(FILE* stream...
July 31, 2006
Learn »
...there is a use for such a typedef after all. I thought they could not...
July 30, 2006
Learn »
...recently that C supports such oddities as

    typedef int qwert(char*);

(if I've got...
July 30, 2006
General »
...you could create a typedef instead of just using a ubyte;

  typedef ubyte koi8char;

Thus...
260 261 262 263 264 265 266 267 268 269 270
Next ›   Last »