Search

March 29, 2022
Learn »
...immutable are transitive, meaning that if your outer reference is const, then everything it refers...
March 27, 2022
Issues »
...13887 "Fix 22934 - Emit context pointer as `outer` instead of `this`" was merged into master...
March 25, 2022
Issues »
...C++) class Outer
{
    class Inner
    {

    }
}

--- example.h
class Outer
{
public:
    class Inner
    {
    public:
        Outer* outer;
    };

};

--
March 24, 2022
Issues »
...Inner()
{
    bool opEquals(Inner) { }
}

struct Outer()
{
    Inner!() field;
    bool opEquals(Outer) { return field == field; }
}

void...
March 24, 2022
Issues »
...Inner()
{
    bool opEquals(Inner) { }
}

struct Outer()
{
    Inner!() field;
    bool opEquals(Outer) { return field == field; }
}

void...
March 19, 2022
Learn »
...below:

```d
import std.stdio;

alias outer O;

struct outer {
  int i;
  O * o;
}

int...
March 09, 2022
Issues »
...void main()
{
    alias outer = __traits(parameters);

    foreach (i; 0..1)
    {
        writeln(outer);
    }
}
---

https://run.dlang...
February 20, 2022
Learn »
...with
each other as well as with outer world (signals,
timers, events from sockets etc)



February 17, 2022
Issues »
...expect the pragma to apply to the outer function only so you can have non...
February 12, 2022
Learn »
...typo made it capture something in an outer or global scope, for example. Or if...
6 7 8 9 10 11 12 13 14 15 16 17
Next ›   Last »