(array)
| 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){ |
| 69288 | if (!(0, _common.equals)(this[i], array[i])) return false; |
| 69289 | } |
| 69290 | return true; |
| 69291 | } |
| 69292 | exactEquals(array) { |
| 69293 | if (!array || this.length !== array.length) return false; |
| 69294 | for(let i = 0; i < this.ELEMENTS; ++i){ |
nothing calls this directly
no outgoing calls
no test coverage detected