Search

April 03
Announce »
...there was only `Params:`. Mathias said that putting them all in `Params:` handled it.

Vijay...
April 02
General »
...static if( is(PROTO Params == __parameters) ) {
        enum paramNames = mixin("["~RequestParams!(Params.length)~"]");
        pragma(msg, paramNames...
March 21
General »
...params = llama_context_default_params();
    ctx_params.n_ctx = 2048;

    import std.parallelism;
    ctx_params...
March 08
Learn »
...Tile[] tiles;
	Tile delegate(string params) factory;

	this() {
        factory = (string params) {
			return new Tile;
		};

		foreach...
February 11, 2024
Issues »
...1 .. $]);
}

enum MIXIN = q{
    this(Params...)(auto ref Params params)
        if (numConstructorOverloads!(__traits(getOverloads, typeof...
January 16, 2024
General »
...else
// 			yield i.to!string;
// 	}
// }

struct Generator {
	// params
	size_t n;
	
	// state of the generator...
January 11, 2024
General »
...Make sure every function in Phobos has Params: and Returns: sections http://www.digitalmars.com...
November 20, 2023
Issues »
...warning for an empty Params section. This warning is produced for
```
/// Params:
/// a = b
void...
November 20, 2023
Issues »
...org> ---
I think this warning is correct - why have a 'Params' section with no content?

--
November 19, 2023
Learn »
...Unqual,Parameters!Func) params;
int stackCounter = 0;
try {
	foreach_reverse(ref param; params) {
		stackCounter--;
		param...
1 2 3
Next ›   Last »