Search

September 05, 2007
General »
...declarations, right?  Now just add alias or typedef in front.

alias int x;
alias void...
September 05, 2007
General »
...I've always seen alias'es and typedef's as being declerations, only directly of...
September 05, 2007
General »
...src;
typedef dst = src;

Instead of (or as well as)

alias src dst;
typedef src...
September 04, 2007
GDC »
...SOURCE) && !defined(__STRICT_ANSI__)
typedef __darwin_off_t          fpos_t;
#else
typedef __int64_t               fpos...
September 02, 2007
General »
...place? Currently it's only a weak typedef (extended to other symbols) with some overloading...
September 01, 2007
General »
...S2 {
    void bar() { printf( "bar\n" ); }
}

typedef int HasFoo;
typedef int HasBar;

template SType( T...
August 26, 2007
General »
...unified type casting with 'cast';
7) strict 'typedef' and relaxed 'alias';
8) array have 'length...
August 25, 2007
General »
...of an typedef + alias as illustrated below [1]:

#        alias Consume delegate(char[]) Bar;
#        typedef Bar...
August 20, 2007
General »
...another approach to the error handler thing:

typedef int error_t;

alias void delegate(string...
August 20, 2007
General »
...types
typedef char function(DecodeMode,char) DecodeCHandler;
typedef wchar function(DecodeMode,wchar) DecodeWHandler;
typedef dchar...
231 232 233 234 235 236 237 238 239 240 241
Next ›   Last »