Search

February 02, 2024
Learn »
Are you thinking of this?

https://dlang.org/phobos/object.html#.imported

-Steve
February 02, 2024
Learn »
Hello,

I seem to recall that there is surprising template to import a module and...
January 25, 2024
General »
...Then programmer call sql.bind_parameters() or sql.execute_with_parameters().
DB driver make another...
January 25, 2024
Announce »
...d
mixin(q{
    static foreach(p; __traits(parameters))
    {{
        enum pname = __traits(identifier, p);
        static if...
January 22, 2024
General »
...not without explicit calls to move. ref parameters and return values would solve some of...
January 22, 2024
Learn »
...D you can also just use named parameters:
```d
import std;

struct Person {
    /*private*/ string...
January 22, 2024
General »
...an implicit parameter called `it` and explicit parameters come after the opening curly brace: `{ p1...
January 20, 2024
General »
...Yes, in some cases (such as template parameters) you can alias an expression. This is...
January 20, 2024
Learn »
...function g defined within mail accepts two parameters and should be applied partially. I found...
January 20, 2024
General »
...in method bodies?

In the method/constructor parameters it's working as expected. But not...
33 34 35 36 37 38 39 40 41 42 43 44
Next ›   Last »