Search

July 08, 2023
General »
...the outer class instance using the `outer` property:
https://dlang.org/spec/class.html#outer...
June 16, 2023
Learn »
This isn't fully playing to its strengths either, there's no need to cast...
June 16, 2023
Learn »
Thanks for the invitation. However, I don't like Discord so I don't use...
June 16, 2023
Learn »
Yes that is to be expected.

Also we have a Discord server which you are...
June 16, 2023
Learn »
And since classes can be declared locally inside methods, you can also do something similar...
June 16, 2023
Learn »
...return type 'Program.Outer.Inner'
        // is less accessible than method 'Program.Outer.getInner()'
        public static...
June 16, 2023
Learn »
...return type 'Program.Outer.Inner'
        // is less accessible than method 'Program.Outer.getInner()'
        public static...
April 10, 2023
General »
The outer loop does nothing, perhaps C# optimizes it away.
February 23, 2023
Issues »
...string format, scope string[] args)
{
    string result;
    outer: while (format.length)
    {
        foreach (i; 0 .. format...
February 03, 2023
Issues »
...DBG(&i);
      }
  }

  int* delegate() outer;

  void DBG(lazy scope int* args)
  {
      outer = &args;
  }

  void main...
1 2 3 4 5 6 7 8 9
Next ›   Last »