(array)
| 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){ |
| 69295 | if (this[i] !== array[i]) return false; |
| 69296 | } |
| 69297 | return true; |
| 69298 | } |
| 69299 | negate() { |
| 69300 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = -this[i]; |
| 69301 | return this.check(); |
nothing calls this directly
no outgoing calls
no test coverage detected