Search

July 29, 2022
Issues »
...getCell(cell);
  }
}

struct StructAlias(alias toRef) {}

struct S(T) {
  void foo() {}
  alias RangesList = StructAlias!(foo...
July 28, 2022
General »
...a problem where you need to add `alias myFunc = myMixin.myFunc`.

And that is okay...
July 28, 2022
Learn »
...static foreach(mem; __traits(allMembers, __ogen__))
        {
            mixin("alias ",mem," = __ogen__.",mem,";");
        }
    };
}

class Tester
{
    int add...
July 27, 2022
Issues »
...cast(Cases)idx;
        return this;
    }
}

auto caseOfTemplated(alias func, T)(auto ref T s) {
    final...
July 27, 2022
General »
...float f;
	int uselessfield=1337;
	bool b;
}
alias biuldfoo=withMe!(q{f=arg[1];b...
July 27, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=9204

Nick Treleaven <nick@geany.org> changed...
July 27, 2022
General »
...string name)
    {
        static import bindbc.glfw;
        mixin(`alias opDispatch = bindbc.glfw.GLFW_KEY_`, name, `;`);
    }
}
```

This...
July 27, 2022
Issues »
...Yes, this is not a bug. The alias introduces empty in the overload set and...
July 27, 2022
General »
...just create a named enum and if you ever wanted, you could just alias it
July 27, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=23241

Dlang Bot <dlang-bot@dlang.rocks...
202 203 204 205 206 207 208 209 210 211 212
Next ›   Last »