Search

June 09, 2022
General »
...pointers. This means that `size_t` parameters accompanying pointers can't be used to judge...
June 09, 2022
Learn »
...hacky way:

```d
auto hopefullyUniqueName(size_t n, size_t line=__LINE__) {
    return format!"____________________________var...
June 09, 2022
General »
...next(T)
{
    mixin(member(counter!(T)));
}

template xorShift(T,size_t x = counter!(T))
{
    static...
June 08, 2022
General »
...the point.

```d
extern(C) void *malloc(size_t);

extern(C) void free(void *); // @safe...
June 08, 2022
General »
...T);

void choose(size_t n, CT* src, T threshold, CT* a, CT* b, T...
June 07, 2022
Learn »
...in the `$`. Not to mention, I don't know if 2-dimensional or n-dimensional...
June 07, 2022
Learn »
...2 ];
  int[_] arr = [ 1, 2 ];

But I can't find past discussions about that.

Ali
June 07, 2022
Issues »
...return null;
    int[] result;
    result.length = 3;
    size_t i;
    foreach (e; r)
    {
        result[i...
June 07, 2022
Learn »
...I was kind of distracted and i didn't type it correctly. Your solution works.
June 06, 2022
Learn »
...Can't i use some feature to imply that D must deduct the size
> from...
85 86 87 88 89 90 91 92 93 94 95 96
Next ›   Last »