Search

October 02, 2022
Issues »
...9 from Nick Treleaven <nick@geany.org> ---
Template alias parameters can accept literal values, so...
October 01, 2022
Learn »
On 10/1/22 11:15, Kyle Ingraham wrote:

> storing structs as
> `void*` in a...
October 01, 2022
Learn »
Thanks for the suggestion Nick. I solved this by storing structs as `void*` in a...
October 01, 2022
Learn »
...parse the structural elements of Dlang using template string[] parameters to feed tokens for the...
October 01, 2022
Learn »
...is possible?

I looked inside the countUntil() template and I see no static ifs for...
October 01, 2022
Learn »
...alignment for all `Chunk` types:

```D
private template Aligned(size_t alignment)
    if(1 <= alignment...
October 01, 2022
Learn »
...align(16) struct Chunk16 {
        void[16] data;
    }
    template Aligned(size_t alignment)
        if(1 <= alignment...
September 30, 2022
Learn »
Maybe this will help you:
```d
template Bar(T)
{
  void fun() {}
}

class Foo(T)
{
  mixin...
September 30, 2022
Learn »
...I want to pass that to a template to generate another function (in this case...
September 29, 2022
Genel »
...0448900fc5a05f2b076eb2500e2522b43c2227cc/std/array.d#L3604
```d
private template canPutRange(Range)
    {
        enum bool canPutRange =
            isInputRange!Range...
239 240 241 242 243 244 245 246 247 248 249
Next ›   Last »