Search

September 19, 2007
General »
...select = -1;
  else
    const int select = -1;
}

typedef rgb back_rgb;
back_rgb Back(rgb...
September 19, 2007
Issues »
...t...){alias t T;}

template Ty(T) { typedef T Type; }

as far as I know...
September 19, 2007
General »
...with
obvious extensions like
typedef(T) something t;        /* == template t(T) { typedef something t; } */
alias...
September 18, 2007
General »
...building a type of class,
psuedo code:
typedef   class  mytype
{
   int m;
   int func();
};

then...
September 14, 2007
Learn »
...up on pretty common C idioms like:
  typedef struct {...} MyStruct;

bcd (the Windows binary) just...
September 13, 2007
General »
...volatile int count;

void fooFunc(void)
{
     ++ count;
};

typedef void (*foo_t)(void);

void test(int...
September 11, 2007
GDC »
...std.stdio, std.bind;
template SR(T...) { typedef SR!(T) delegate(T) SR; }
SR!(int...
September 11, 2007
Issues »
...126,17 @@
        }
 }

+version (Win32) { }
+else
+{
+       extern(C)
+       {
+               typedef void function(int) sighandler_t;
+               sighandler_t...
September 08, 2007
Issues »
...were a clean way to alias or typedef or macro the D2 const features (within...
September 07, 2007
General »
...a_raw_incoming_channel_processor_t
  {
  private:
    typedef std::map< std::string, ref_channel_state...
229 230 231 232 233 234 235 236 237 238 239
Next ›   Last »