Search

October 16, 2012
General »
...there is "newtype" that is the D "Typedef" done (almost) right.

Here you see an...
October 16, 2012
General »
...it (Like I never use Rebindable or Typedef. I sometimes use Nullable or AssumeUnique). But...
October 16, 2012
General »
...C++11 you can now also say:

using MyRealType = double;

...instead of:

typedef double MyRealType;
October 16, 2012
General »
...sometimes I saw
#define BOOL int
and other times
typedef int Bool;  // what a heck?
October 16, 2012
General »
...than "typedef" and their usage is near identical. C/C++ will allow you to typedef...
October 16, 2012
General »
...not the same thing as C's typedef, but I understand it originally evolved out...
October 16, 2012
General »
It's the same as C's typedef syntax.

- Jonathn M Davis
October 13, 2012
Issues »
...12 23:09:41 PDT ---
// foo.c

typedef struct {
    unsigned bar;
    unsigned baz;
} Foo;

Foo...
October 11, 2012
General »
...e.g. if there was a string typedef in a C library:

alias const(char...
October 11, 2012
General »
...TypeInfo_Class
TypeInfo_Interface
TypeInfo_Struct
TypeInfo_Typedef
TypeInfo_Pointer
TypeInfo_Array
TypeInfo_AssociativeArray
TypeInfo...
115 116 117 118 119 120 121 122 123 124 125
Next ›   Last »