Search

October 04
General »
...a;
Object* b = &a;

*b = new Object; // modifies `a`

assert(typeid(a) is typeid(Object...
October 04
Learn »
...file that would contain a static D object instead and then compile this `.d` file.
October 04
Learn »
...you might want to put the JSON object into its own package so it will...
October 04
General »
...Object o;
    const Throwable t;
    f(&o, &t); // Fine
    f(&t, &o); // Error
    f!Object...
October 04
General »
...length) that the callee MAY move the object, and if it does, the callee is...
October 02
General »
...data flow analysis of the tracked objects. Object tracking isn't too complex if you...
October 01
General »
...move constructor just has to initialize the object. A move assignment has to destroy the...
October 01
Learn »
...invisible object here: init (struct MyCon)
    zero.init.writeln;  //* 0 */

    // Here is a new object...
October 01
General »
...that the object you pass in by-ref will be the same object after the...
September 29
General »
...on the object, even when the function isn't a member of the object's...
7 8 9 10 11 12 13 14 15 16 17 18
Next ›   Last »