Search

September 28, 2009
General »
...that opApply takes must always take ref params, even if you don't iterate as...
September 26, 2009
General »
...90); //  transformed to: "int result = 90;"

[macro(params)] // some imaginary attribute/annotations syntax
class Class...
September 22, 2009
General »
...ReturnType!(func) func(ParameterTupleOf!(func) params)
{
	auto result = innerObj.func(params);
	// do something interesting
	return...
September 21, 2009
Learn »
...myself stay out of 'ref' and 'out' params since they do not yet optimize and...
September 17, 2009
Issues »
...parameters are not listed under Params in the generated output
 *
 * Params:
 *     ü = first
 *     ş = second...
September 17, 2009
General »
...func(type[] arr, params) {}
and use it as:
type[] arr;
arr.func(params);

applied to...
September 12, 2009
General »
...old C++ hacker, immediately tried the default params trick for __FILE__ and __LINE__ but it...
September 12, 2009
General »
...objfile->name->str);` after `m->genobjfile(global.params.multiobj);` in mars.c. I'm compiling...
September 05, 2009
Learn »
...like defining a global __dollar, but it's useless since it can't take params.
September 02, 2009
General »
No, you can do it with params too.

foo((int x) { return x; });
126 127 128 129 130 131 132 133 134 135 136
Next ›   Last »