March 12, 2018 Learn » Re: Generic Property Implementation | |||
|---|---|---|---|
| |||
...legal to write
struct Outer
{
struct Inner{}
}
void main()
{
auto i = Outer.Inner();
}
but would... | |||
March 11, 2018 Learn » Inner Classes vs. Inner Structs | |||
|---|---|---|---|
| |||
...have an implicit context reference to the outer struct? Is this a bug? Thanks for... | |||
March 03, 2018 Issues » [Issue 16555] Stack corruption when calling multi-parameter outer function from nested function | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=16555
github-bugzilla@puremagic.com changed:
What... | |||
March 03, 2018 Issues » [Issue 16555] Stack corruption when calling multi-parameter outer function from nested function | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=16555 --- Comment #3 from github-bugzilla@puremagic... | |||
February 12, 2018 Announce » Re: dxml 0.2.0 released | |||
|---|---|---|---|
| |||
...a complete XML document that contains an outer <xml> tag, but just some PCDATA that... | |||
February 10, 2018 Learn » Re: opDispatch with string mixin does not work as I would expect. | |||
|---|---|---|---|
| |||
struct Outer
{
struct Inner
{
int a;
float b;
}
Inner i;
auto opDispatch(string name)()
{
return... | |||
February 09, 2018 General » Re: Which language futures make D overcompicated? | |||
|---|---|---|---|
| |||
...since they can only strip away the outer layer of shared). I think that the... | |||
February 01, 2018 Learn » Re: Lambda returning a lambda? | |||
|---|---|---|---|
| |||
The problem here is the outer lambda doesn't know what type the inner lambda... | |||
January 30, 2018 Issues » [Issue 17970] shared struct destructor doesn't compile anymore | |||
|---|---|---|---|
| |||
...t compile either now:
struct Inner { ~this() {} }
struct Outer { shared Inner inner; }
void main() {
Outer _;
}
-- | |||
January 24, 2018 Learn » Re: Class instance memory overhead lower than 3 words? | |||
|---|---|---|---|
| |||
...won't have a pointer to any kind of outer scope though. - Jonathan M Davis | |||
Copyright © 1999-2021 by the D Language Foundation