October 05, 2006 Learn » Re: Recursive typedef | |||
|---|---|---|---|
| |||
Markus Dangl wrote: If your approach would be possible, then also recursive types as formal... | |||
October 05, 2006 Learn » Re: Recursive typedef | |||
|---|---|---|---|
| |||
...did for a function
IIRC this works
=typedef void* function() State;
=State foo() { return cast... | |||
October 05, 2006 Learn » Recursive typedef | |||
|---|---|---|---|
| |||
...trying to write a function like that: typedef ParseFn function(char[] s) ParseFn; i.E... | |||
October 04, 2006 General » Re: Games people play | |||
|---|---|---|---|
| |||
...ClassT>
class _SlotCaller0 : public _SlotCaller<ClassT>
{
protected: typedef void (ClassT::*MethT)();
MethT mMeth; friend DynSigSlot... | |||
October 01, 2006 General » Re: First Impressions | |||
|---|---|---|---|
| |||
...using char[] seems perfectly natural. I tried typedef'ing char* to string now and then... | |||
September 29, 2006 General » Re: First Impressions | |||
|---|---|---|---|
| |||
...the char as is and define a typedef struct or whatever that provides the added... | |||
September 29, 2006 Issues » Re: [Issue 379] New: wrong thisptr type in typedef'ed struct | |||
|---|---|---|---|
| |||
test case: http://dstress.kuehne.cn/run/t/typedef_07_B.d Thomas | |||
September 29, 2006 Issues » Re: [Issue 378] New: Assertion failure: '0' on line 216 in file 'init.c' | |||
|---|---|---|---|
| |||
...run/t/typedef_20_A.d http://dstress.kuehne.cn/run/t/typedef_20_B... | |||
September 28, 2006 Issues » Re: [Issue 104] Forward reference error occurs when the -g switch is invoked | |||
|---|---|---|---|
| |||
...about this code? --- bug.d --- Foofunc f; typedef int Foo; alias int function(Foo) Foofunc... | |||
September 27, 2006 Learn » Re: need 'this' to access data member | |||
|---|---|---|---|
| |||
...0;
##############
...is identical to this...
##############
typedef struct
{
int x;
} Foo;
typedef struct
{
Foo foo;
} MyStruct... | |||
Copyright © 1999-2021 by the D Language Foundation