Search

March 26, 2012
DMD »
...and something useful where I have "...":

   typedef ... T;

   typedef struct darray_struct {
       size_t  length...
March 25, 2012
Issues »
...50];
}



But this:

import std.typecons: Typedef;
alias Typedef!(double[3]) V3;
V3 v1 = [30...
March 21, 2012
Learn »
...languages, sorry. I addressed a new problem:

typedef struct SomeFunctions {
    void *(*funcA)(char*, size_t...
March 21, 2012
Learn »
...to convert the following struct to D?

typedef struct S {
    int type;
    void *obj;
} S...
March 20, 2012
Issues »
...doesn't compile:

import std.typecons: Typedef;
alias Typedef!(int[]) MyArray;
void main() {
    MyArray arr...
March 20, 2012
Issues »
...5): Error: template
std.typecons.Typedef!(int[],null).Typedef.Proxy!(Typedef_payload).opAssign(this
X...
March 17, 2012
Genel »
...rengi : 3;
   unsigned short harf_adedi : 10;
};

typedef struct MetinRengi MetinRengi;

int main()
{
   MetinRengi mr...
March 17, 2012
General »
...to various structs (I have
header/class/typedef/enum/etc structs).
2. Serialize the structs...
March 08, 2012
Phobos »
...Message:
  -----------
  Rename: ProxyOf to Proxy, and TypeDef to Typedef.


  Commit: 7b62989568958eaf610b0e80004f1e6358dc2b6b
      https://github.com/D...
March 04, 2012
Issues »
...Typedef(T)
{
    private T Typedef_payload;

    this(T init)
    {
        Typedef_payload = init;
    }

    mixin Proxy!Typedef...
130 131 132 133 134 135 136 137 138 139 140
Next ›   Last »