Search

August 29, 2006
General »
...nameless parameter:

typedef int a;
interface Foo { int bar(a); }

would then become:

typedef int...
August 29, 2006
General »
...make parameter names to be mandatory here?

typedef int x;
auto sqr(x);          //'x' is...
August 29, 2006
General »
...from:

	typedef int x;
	auto sqr(x);

i.e. when x is a typedef and...
August 25, 2006
General »
...implicit conversion to (but not from) int. typedef 1..15 MyNumber; // only allows explicit conversion...
August 25, 2006
DWT »
...to "Fl_Widget::handle(Fl_Event)" with "typedef int Fl_Event". Man, did I regret...
August 21, 2006
General »
...is the D meaning of "typedef" (since C's "typedef" is D's "alias"), and...
August 20, 2006
DWT »
...vector3di? They are typedefed anyway there..
typedef vector3d<f32> vector3df;
typedef vector3d<s32> vector3di;

Thanks.
August 17, 2006
DWT »
...the typedef to alias (why, because C's typedef isn't D's typedef but...
August 16, 2006
Learn »
How's this?

import std.stdio;

typedef int function(int i) WNDPROC;

class BaseWindow
{
	void...
August 16, 2006
Issues »
...to change the length of those. Code:
-----

typedef int ft(int);

ft[] x;  // is allowed...
259 260 261 262 263 264 265 266 267 268 269
Next ›   Last »