Search

March 07, 2007
Announce, GDC »
...in hardware and to add an alias, typedef, struct, whatever, to allow C interop. This...
March 07, 2007
Announce, GDC »
...D, we can static-if an alias or typedef on the basis of mant_dig.
March 07, 2007
Announce, GDC »
...others, it might need to be a typedef rather than an alias, so that you...
March 04, 2007
Learn »
...value_type denominator
   = TL.denominator * TR.denominator;
   typedef rational!(value_type,numerator,denominator).type type...
March 02, 2007
Learn »
...realType(T)
{
    static if(is(T U == typedef))
        alias realType!(U) realType;
    else
        alias T...
March 02, 2007
Learn »
...need to do this:

struct __Foo {};
typedef Foo*   FooRef;
typedef FooRef     BarRef;

{
  BarRef br = ...;
  FooRef...
February 27, 2007
c++.stlsoft »
...IMO, every sequence and sequence adaptor should have a const_iterator typedef.




So Long...

Gabor
February 24, 2007
Learn »
Tested in dmd 1.007, the two toString definitions conflicts when they are in main...
February 23, 2007
General »
This is doable, unfortunately function overload on typedef/enum seems broken, so..

Well for reflective...
February 23, 2007
General »
...enums should be able to produce a typedef, just like built-in enums.

2. Built...
242 243 244 245 246 247 248 249 250 251 252
Next ›   Last »