Search

August 26, 2022
Issues »
...scope` itself if you make it a template.

The job of `return scope` here is...
August 25, 2022
General »
...approach [1] is to make toString a template that accepts an output range:

    import std...
August 25, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=12735

RazvanN <razvan.nitu1305@gmail.com> changed...
August 23, 2022
General »
...the template parameters for a specific set of types when debugging what the template might...
August 22, 2022
Learn »
...my program, I passed isConst as a template parameter with default initialization. It only needed...
August 22, 2022
General »
...to read the fine print (aka the template specialization).  After a week of development when...
August 22, 2022
General »
...a solution that will work for a template, like array\<int>, but in reality underneath...
August 22, 2022
Learn »
...and mutable overloads by using the `this` template parameter:

```d
import std.stdio;
class C...
August 22, 2022
Learn »
...struct S;
template t() {}

@S           // a type
@(std.stdio) // a module
@t           // a template
int...
August 22, 2022
Learn »
I have an impression that template function can be called without parenthesis if it doesn...
256 257 258 259 260 261 262 263 264 265 266
Next ›   Last »