Search

September 28
Learn »
...of a class is, of course, an object.  The instance's variables can be int...
September 25
Issues »
...d
allSatisfy!(function template(T) => is(T : Object), ...)
```

Although requiring some modifications to `allSatisfy` to...
September 25
Issues »
...look like this:
```d
delegate template(T : Object = Object, Ts...)
auto ref T (auto ref...
September 24
DIP Development »
...someone writes `new class (Object)`, that’s a compile error today (if `Object` refers to a...
September 25
DIP Development »
...Example Descriptor Object" https://gist.github.com/rikkimax/fe2578e1dfbf66346201fd191db4bdd4/0bb4442c092e061d520c35a43278f0819666f26f#example-descriptor-object

Recognizing a...
September 23
DIP Development »
...Arguments) {}`. If not, it’s `new class /*implicit Object*/(Arguments) {}` because of backwards compatibility.

I’ll commit...
September 22
DIP Development »
...d
alias exit = Object;
Object x1;
void main()
{
    scope (exit) x1 = new Object(); // Still a...
September 20
General »
...perfectly capable of using RC for the object lifetime (construction and destruction) and GC for...
September 19
Issues »
...e.

```d
import std.stdio;

void main() {
    writeln(cast(size_t)cast(void*)new Object);
}
```

--
September 19
Issues »
...printing the address of an object:
```
    auto o = new Object();
    writeln(cast(void*) o);
```

Addresses...
8 9 10 11 12 13 14 15 16 17 18 19
Next ›   Last »