Search

March 12, 2018
Learn »
...legal to write

struct Outer
{
	struct Inner{}
}

void main()
{
  auto i = Outer.Inner();
}

but would...
March 11, 2018
Learn »
...have an implicit context reference to the outer struct?  Is this a bug?

Thanks for...
March 03, 2018
Issues »
https://issues.dlang.org/show_bug.cgi?id=16555

github-bugzilla@puremagic.com changed:

           What...
March 03, 2018
Issues »
https://issues.dlang.org/show_bug.cgi?id=16555

--- Comment #3 from github-bugzilla@puremagic...
February 12, 2018
Announce »
...a complete XML document that contains an outer <xml> tag, but just some PCDATA that...
February 10, 2018
Learn »

struct Outer
{
	struct Inner
	{
		int a;
		float b;
	}
	Inner i;
	
	auto opDispatch(string name)()
	{
		return...
February 09, 2018
General »
...since they can only strip away the outer layer of shared).

I think that the...
February 01, 2018
Learn »
The problem here is the outer lambda doesn't know what type the inner lambda...
January 30, 2018
Issues »
...t compile either now:

struct Inner { ~this() {} }
struct Outer { shared Inner inner; }

void main() {
    Outer _;
}

--
January 24, 2018
Learn »
...won't have a pointer to any kind of outer scope though.

- Jonathan M Davis

36 37 38 39 40 41 42 43 44 45 46 47
Next ›   Last »