Search

June 09, 2021
Learn »
...last() { return this.outer.items.empty ? null : this.outer.items[this.outer.items.length - 1L...
June 08, 2021
Learn »
...classComputers`?
./dm.d(53): Error: no property `outer` for type `dmclassescomputer.classComputer`

file [dm.d...
June 08, 2021
Learn »
...foreach(lobjComputer; lobjComputers) { writeln(r"["c ~ lobjComputer.outer.network ~ r" network has "c ~ lobjComputer.name...
May 30, 2021
General »
...used
        @scope(outer) Message cipher = encrypt(key);
        // Implicitly defines "cipher" uninitialized in "outer" scope.
        // Generates...
May 25, 2021
Issues »
...static assert(is(Outer!int : Inner!int)); // ok
static assert(is(Outer!int : Inner!T...
May 25, 2021
Issues »
...When there are other fields, an ICE occurs.
---
struct outer
{
  int field;
 struct
   {
     int nested;
   };
};

--
May 25, 2021
Issues »
...have been added to the struct.
---
struct outer
{
 struct
   {
     int nested;
   };
};
---

This would suggest the...
May 18, 2021
General »
...was "made" from an object in an outer scope that assumes that the inner scope...
May 18, 2021
Issues »
...become part of the lambda's state (or create an outer lambda which does this).

--
May 15, 2021
Issues »
...templates. You get similar behavior with multiple outer templates.

The examples below are compiled with...
10 11 12 13 14 15 16 17 18 19 20 21
Next ›   Last »