Search

September 01
Learn »
...std.typecons;

alias vstring = Typedef!string;

void main ()
{
   import std.stdio;
   import std.conv;

   auto...
September 01
Issues »
...s.vars[i].atomicStore(e.atomicLoad());
                }
        }
}

void main()
{
        auto a = new A;
        a.fn(1...
September 01
Issues »
...vogtner.de> ---
Same error opposite direction:

void main ()
{
   import std.typecons;
   import std.conv;

   alias...
August 31
Learn »
Is that functionally different from

```
void main()
{
    import std.stdio;

    int[string] test = ["hello": 42...
August 31
DIP Ideas »
...length - n;

  return range.drop(diff);
}

void main()
{
  import std.stdio : writeln;
  auto r = 1000...
August 31
Learn »
...ptr);
    else
        return Nullable!V.init;
}

void main()
{
    import std.stdio;

    int[string] test = ["hello...
August 31
Learn »
```D
void main()
{
    int[string] test;

    test["hello"] = 42;

    if (auto it = "hello" in test...
August 31
Issues »
...is constant.
                auto b = ENUM2; // OK
        }
}

void main()
{
        auto a = new shared(A);
        a.f...
August 31
General »
...int x;
    alias expand=Seq!x;
}

void main(){
    S s;
    pragma(msg,__traits(isRef,s...
August 31
Issues »
...ENUM1; // OK
                auto d = ENUM2; // OK
        }
}

void main()
{
        A a = new A;
        a.f();
        A...
26 27 28 29 30 31 32 33 34 35 36 37
Next ›   Last »