db961c5a54eeb931d485ba6fa65c90af14f10e112000650655eca091105635daeea761c1d50ea09465eb27aea6403132675d1c893f1bbc8bf28eab0f2897dc 659 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. "use strict";
  2. Object.defineProperty(exports, "t", {
  3. value: true
  4. });
  5. exports.ContainerIterator = exports.Container = exports.Base = void 0;
  6. class ContainerIterator {
  7. constructor(t = 0) {
  8. this.iteratorType = t;
  9. }
  10. equals(t) {
  11. return this.o === t.o;
  12. }
  13. }
  14. exports.ContainerIterator = ContainerIterator;
  15. class Base {
  16. constructor() {
  17. this.i = 0;
  18. }
  19. get length() {
  20. return this.i;
  21. }
  22. size() {
  23. return this.i;
  24. }
  25. empty() {
  26. return this.i === 0;
  27. }
  28. }
  29. exports.Base = Base;
  30. class Container extends Base {}
  31. exports.Container = Container;
  32. //# sourceMappingURL=index.js.map