Search

August 22, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=12373

RazvanN <razvan.nitu1305@gmail.com> changed...
August 22, 2022
General »
...is often littered with a lot of template-heavy code, which makes type inference difficult...
August 22, 2022
Learn »
...we can gain a nice auto-constructor template*:

```d
enum defaultClassConstructor = q{
  this(typeof(this...
August 20, 2022
General »
Maybe something like this:
```d
template ZeroInit(T)
{
	union U
	{
		byte[T.sizeof] a;
		T...
August 20, 2022
General »
...units are possible at compile time using template and enumerator. Walter showed much better in...
August 19, 2022
Learn »
...the compiler should at least check that expressions independent of the template parameter are valid.
August 19, 2022
Genel »
Hala template olanağını yeterince usta bir şekilde kullanamayan bir çırak olarak söylüyorum ki aslında her...
August 19, 2022
Learn »
...UTC, Ruby The Roobster wrote:

If the template is never instantiated, it never makes it...
August 19, 2022
Learn »
...this compiles is because of the varidic template parameter, `Mtypes`.

Either there is something I...
August 17, 2022
Genel »
...struct BoolEnum(E)
{
  private ubyte flags;

  private template Impl(ubyte mask)
  {
    bool Impl(bool v...
257 258 259 260 261 262 263 264 265 266 267
Next ›   Last »