Search

January 22, 2022
Learn »
...apply(alias fn)
{
    private auto impl(Args...)(Args args)
    {
        @property auto ref elm(alias param...
January 22, 2022
Learn »
...multiple ref counted objects:
    public auto apply(alias fn, Args...)(scope auto ref Args args...
January 22, 2022
Learn »
...as I understand it like the following:

        alias tup = AliasSeq!(Foo, Foo);

        static foreach(Type...
January 22, 2022
Learn »
...main(){
    {
    	AliasSeq!(Foo, Foo) tup;

        static foreach(alias x; tup)
            writeln("check(", x.i, "): ", cast...
January 22, 2022
Learn »
...Args params = forward!args;
    writeln("params initialized");

    alias foo = params[0];
    writeln("check(", foo.i...
January 22, 2022
Issues »
...mix(alias fun) {
    auto foo()
    {
        return fun;
    }
}

void main()
{
    mixin mix!((size_t n) {
        alias...
January 22, 2022
Learn »
...import std.exception : enforce;
import std.meta : Alias;

debug { import std; }

Random rnd;
static this...
January 22, 2022
Issues »
...the duplicate declarations:

  import maker;
  import freer;

  alias FooRef = maker.FooRef;
  extern (C) void free...
January 21, 2022
Learn »
...000_001;
    alias iotaValues = Alias!"iota(iotaStartNum, iotaStartNum + recordsNeeded).enumerate";
    alias recordValues = Alias!"iota(valuesPerRecord...
January 21, 2022
Announce »
...id=13162

### Me
I brought up an `alias this` issue that had come up in...
250 251 252 253 254 255 256 257 258 259 260
Next ›   Last »