Search

August 08, 2007
General »
...I would prefer that), e.g.

C++:

  typedef IShellFolder *LPSHELLFOLDER;


to D:

  alias IShellFolder LPSHELLFOLDER...
August 05, 2007
General »
...doing here.

Again, for D/2.0:
typedef invariant(char)[] symbol ;

Not technically the same...
August 05, 2007
Learn »
...T[0]), typeof(*T), is(T Base == typedef), is(T Return == return), and is(T...
August 01, 2007
Learn »
...NEXT, NEXT(OFFSET), NAMES[1..$]);
  }
}

typedef uint Enum; /// additive increase
typedef uint Bitfield; /// multiplicative increase...
July 31, 2007
Issues »
...allow for such declarations.

A declaration like:

typedef A[] func(A, B)(B bla);

should...
July 30, 2007
General »
Reply to Bill,

if typedef's could overload opXxx functions then they could serve as...
July 28, 2007
General »
...in D, but possible.  Consider:

typedef void Foo();
Foo[] f;

typedef void function() Bar;
Bar...
July 26, 2007
Learn »
...Data>,
          bool _Duplicates = false>

class bptree
{
public:
    typedef _Key                        key_type;

  //etc, and so on...
July 23, 2007
Issues »
...implicitly convert
                   |literal 0 to typedef of     |literal 0 to typedef of
                   |ulong                       |ulong




------- Comment...
July 23, 2007
General »
...gives a use for mixed-type ranges:

typedef size_t step = 1;

struct MyArray(T...
233 234 235 236 237 238 239 240 241 242 243
Next ›   Last »