April 03 Announce » D Language Foundation January 2024 Quarterly Meeting Summary | |||
|---|---|---|---|
| |||
...there was only `Params:`. Mathias said that putting them all in `Params:` handled it. Vijay... | |||
April 02 General » Re: std.traits.ParameterIdentifierTuple producing empty results. | |||
|---|---|---|---|
| |||
...static if( is(PROTO Params == __parameters) ) {
enum paramNames = mixin("["~RequestParams!(Params.length)~"]");
pragma(msg, paramNames... | |||
March 21 General » This one simple trick allows D programmer use llama.cpp, rust programmers hate him! | |||
|---|---|---|---|
| |||
...params = llama_context_default_params();
ctx_params.n_ctx = 2048;
import std.parallelism;
ctx_params... | |||
March 08 Learn » Re: Can a D library have some types determined by the client program? | |||
|---|---|---|---|
| |||
...Tile[] tiles;
Tile delegate(string params) factory;
this() {
factory = (string params) {
return new Tile;
};
foreach... | |||
February 11, 2024 Issues » [Issue 24386] New: [REG 2.095.1] constructor has no function body with return type inference | |||
|---|---|---|---|
| |||
...1 .. $]);
}
enum MIXIN = q{
this(Params...)(auto ref Params params)
if (numConstructorOverloads!(__traits(getOverloads, typeof... | |||
January 16, 2024 General » Re: An idea; Coroutines | |||
|---|---|---|---|
| |||
...else
// yield i.to!string;
// }
// }
struct Generator {
// params
size_t n;
// state of the generator... | |||
January 11, 2024 General » Re: named arguments, string interpolation, please stop. | |||
|---|---|---|---|
| |||
...Make sure every function in Phobos has Params: and Returns: sections http://www.digitalmars.com... | |||
November 20, 2023 Issues » [Issue 24203] Params section in ddoc comments causes warnings with unnamed parameters | |||
|---|---|---|---|
| |||
...warning for an empty Params section. This warning is produced for ``` /// Params: /// a = b void... | |||
November 20, 2023 Issues » [Issue 24203] Params section in ddoc comments causes warnings with unnamed parameters | |||
|---|---|---|---|
| |||
...org> --- I think this warning is correct - why have a 'Params' section with no content? -- | |||
November 19, 2023 Learn » Struct value either resets, or not getting passed correctly | |||
|---|---|---|---|
| |||
...Unqual,Parameters!Func) params;
int stackCounter = 0;
try {
foreach_reverse(ref param; params) {
stackCounter--;
param... | |||
Copyright © 1999-2021 by the D Language Foundation