August 14, 2023 Issues » [Issue 24085] New: Separate Compilation Bugs | |||
|---|---|---|---|
| |||
...INT = int;
version (UNSIGNED) alias INT = uint;
template Foo(N...) {
alias Foo = FooImpl!(N);
}
struct... | |||
August 14, 2023 General » Re: Eponymous template with static if | |||
|---|---|---|---|
| |||
...the `template` keyword. They attach to the template itself, not the function: ```d template square... | |||
August 14, 2023 General » Re: Eponymous template with static if | |||
|---|---|---|---|
| |||
D has [template constraints](https://dlang.org/spec/template.html#template_constraints) that will do... | |||
August 12, 2023 Issues » [Issue 2596] Variadic constructors don't compile | |||
|---|---|---|---|
| |||
...dlang.org pull request #3602 "Updates to Template Comparison page" was merged into master: - 00028f506c024b3b08c96666bd2e6fdcfa000fb0... | |||
August 11, 2023 Issues » [Issue 24083] Int128.opCmp's behavior with negative numbers is inconsistent with Int128.opEquals | |||
|---|---|---|---|
| |||
...Int128.opEquals Needed to make opCmp a template to avoid causing `Int128(-1L) < ulong.max... | |||
August 11, 2023 Issues » [Issue 24082] add Int128.toString that supports std.format | |||
|---|---|---|---|
| |||
...supports std.format toString has template parameter FormatSpec instead of template parameter Char and argument... | |||
August 11, 2023 Issues » [Issue 24081] [Function countUntil] countUntil is a terrible name | |||
|---|---|---|---|
| |||
...I dont fully agree, here is why:
```
template indexOf(T)
if (isRandomAccessRange!T)
{
alias indexOf... | |||
August 11, 2023 Announce » D Language Foundation July 2023 Monthly Meeting Summary | |||
|---|---|---|---|
| |||
...its template. Walter said that if the warning is the result of a template from... | |||
August 11, 2023 Announce » D Language Foundation July 2023 Planning Update | |||
|---|---|---|---|
| |||
...build(string s) {
return factories[s]();
}
mixin template Register() {
shared static this() {
factories[typeof(this... | |||
August 10, 2023 Issues » [Issue 24080] New: std.traits.TemplateOf doesn't return void for non-template functions | |||
|---|---|---|---|
| |||
...void` on non-template types. However, it fails to compile on non-template functions: ```d... | |||
Copyright © 1999-2021 by the D Language Foundation