Search

April 04, 2009
General »
...the following:

interface Foo
{
   this(int i);
   typedef Bar;
}

Foo foo = new Foo(42); // huh...
April 03, 2009
Issues »
...similar to BUG 918.

import std.stdio;

typedef char ctd;
class Foo { }
class Bar : Foo...
April 02, 2009
Issues »
http://d.puremagic.com/issues/show_bug.cgi?id=918


matti.niemenmaa+dbugzilla@iki.fi...
April 02, 2009
Issues »
...metalanguage.com


This should work:

interface Foo
{
    typedef Bar;
}

meaning that the interface should contain...
April 02, 2009
Issues »
http://d.puremagic.com/issues/show_bug.cgi?id=918


baryluk@smp.if.uj.edu...
March 27, 2009
General »
...default, I think you do something like:

typedef int myint = 5;

myint x;

writefln(x...
March 27, 2009
General »
...preprended by TCODLIB_API, which is a typedef to __declspec(dllexport) ( or __declspec(import) ) which...
March 23, 2009
General »
...util.log.Trace;

// declaring our function pointer
typedef extern (C) Factory function() createFunc;
createFunc dllcreate...
March 19, 2009
Learn »
...Gordon Wrote:

I believe it was a typedef in this case.  There were other points...
March 19, 2009
Learn »
...alias (the D equivalent of typedef in C) or a typedef (an actual new type...
200 201 202 203 204 205 206 207 208 209 210
Next ›   Last »