3 days ago DIP Ideas » Re: Struct inheritance | |||
|---|---|---|---|
| |||
...main() {
Parent parent = new Parent;
parent.methB("Direct");
writeln();
Child child = new Child;
child.methB... | |||
3 days ago DIP Ideas » Re: Struct inheritance | |||
|---|---|---|---|
| |||
...import std.stdio;
void main() {
Child child = new Child;
child.methB();
writeln();
Parent parent = child... | |||
3 days ago DIP Ideas » Re: Struct inheritance | |||
|---|---|---|---|
| |||
...import std.stdio;
void main() {
Child child = new Child;
child.method();
Parent parent = child;
parent... | |||
4 days ago General » Re: Something like ADL from C++? | |||
|---|---|---|---|
| |||
...If only the implicit conversion, then a new form of operator, or special named member... | |||
4 days ago Learn » Re: How can I have those "template instance recursive expansion" errors under control? | |||
|---|---|---|---|
| |||
...with the separate =true and =false was new to me. I've checked isNumeric(), and... | |||
4 days ago Announce » Re: Bugzilla Issue migration to github (phobos) | |||
|---|---|---|---|
| |||
...of thing, and it's not exactly new that bugzilla e-mails about any comments... | |||
5 days ago Announce » Re: Bugzilla Issue migration to github (phobos) | |||
|---|---|---|---|
| |||
...jump on GitHub and subscribe to the new issue. I searched for the appropriate text... | |||
5 days ago Issues » [Issue 24102] spam | |||
|---|---|---|---|
| |||
...sneakemail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |INVALID
Summary|Wedding Decoration, |spam... | |||
5 days ago Learn » Search on Shared array and return | |||
|---|---|---|---|
| |||
...return null;
}
void main()
{
shared User alice = new shared User("Alice", 20);
users ~= alice;
shared... | |||
5 days ago Learn » Re: Variable modified by different threads. | |||
|---|---|---|---|
| |||
...41);
auto threads = [
new Thread(() { incrementInThread(1); }),
new Thread(() { incrementInThread(2); }),
new Thread(() { incrementInThread(3... | |||
Copyright © 1999-2021 by the D Language Foundation