(opts)
| 69278 | return this.formatString((0, _common.config)); |
| 69279 | } |
| 69280 | formatString(opts) { |
| 69281 | let string = ""; |
| 69282 | for(let i = 0; i < this.ELEMENTS; ++i)string += (i > 0 ? ", " : "") + (0, _common.formatValue)(this[i], opts); |
| 69283 | return "".concat(opts.printTypes ? this.constructor.name : "", "[").concat(string, "]"); |
| 69284 | } |
| 69285 | equals(array) { |
| 69286 | if (!array || this.length !== array.length) return false; |
| 69287 | for(let i = 0; i < this.ELEMENTS; ++i){ |