Graph.prototype.outitr = function* (v) {
        for (const e of this.succ.get(v)) yield e.ref;
    };