chenyc
2025-12-09 545c24c6a711d71b65f3d4e8122fee3837fb1edc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
var __extends = this && this.t || function() {
    var extendStatics = function(n, t) {
        extendStatics = Object.setPrototypeOf || {
            __proto__: []
        } instanceof Array && function(n, t) {
            n.__proto__ = t;
        } || function(n, t) {
            for (var r in t) if (Object.prototype.hasOwnProperty.call(t, r)) n[r] = t[r];
        };
        return extendStatics(n, t);
    };
    return function(n, t) {
        if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null");
        extendStatics(n, t);
        function __() {
            this.constructor = n;
        }
        n.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __);
    };
}();
 
var ContainerIterator = function() {
    function ContainerIterator(n) {
        if (n === void 0) {
            n = 0;
        }
        this.iteratorType = n;
    }
    ContainerIterator.prototype.equals = function(n) {
        return this.o === n.o;
    };
    return ContainerIterator;
}();
 
export { ContainerIterator };
 
var Base = function() {
    function Base() {
        this.M = 0;
    }
    Object.defineProperty(Base.prototype, "length", {
        get: function() {
            return this.M;
        },
        enumerable: false,
        configurable: true
    });
    Base.prototype.size = function() {
        return this.M;
    };
    Base.prototype.empty = function() {
        return this.M === 0;
    };
    return Base;
}();
 
export { Base };
 
var Container = function(n) {
    __extends(Container, n);
    function Container() {
        return n !== null && n.apply(this, arguments) || this;
    }
    return Container;
}(Base);
 
export { Container };
//# sourceMappingURL=index.js.map