(iterable)
| 263 | }()); |
| 264 | return /** @class */ (function () { |
| 265 | function Set(iterable) { |
| 266 | var _this = this; |
| 267 | this._mapData = createMapData(); |
| 268 | forEachIteration(getIterator(iterable), function (value) { return _this.add(value); }); |
| 269 | } |
| 270 | Object.defineProperty(Set.prototype, "size", { |
| 271 | get: function () { return this._mapData.size; }, |
| 272 | enumerable: false, |
nothing calls this directly
no test coverage detected