Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
31 lines
571 B
JavaScript
31 lines
571 B
JavaScript
var SimpleSet = /*#__PURE__*/function () {
|
|
function SimpleSet() {
|
|
this.v = [];
|
|
}
|
|
|
|
var _proto = SimpleSet.prototype;
|
|
|
|
_proto.clear = function clear() {
|
|
this.v.length = 0;
|
|
};
|
|
|
|
_proto.has = function has(k) {
|
|
return this.v.indexOf(k) !== -1;
|
|
};
|
|
|
|
_proto.add = function add(k) {
|
|
if (this.has(k)) return;
|
|
this.v.push(k);
|
|
};
|
|
|
|
_proto.delete = function _delete(k) {
|
|
var idx = this.v.indexOf(k);
|
|
if (idx === -1) return false;
|
|
this.v.splice(idx, 1);
|
|
return true;
|
|
};
|
|
|
|
return SimpleSet;
|
|
}();
|
|
|
|
export { SimpleSet as default }; |