in src/utils/SimpleSet.js [15:20]
delete(k) { const idx = this.v.indexOf(k); if (idx === -1) return false; this.v.splice(idx, 1); return true; }