(vector)
| 69309 | return this.check(); |
| 69310 | } |
| 69311 | min(vector) { |
| 69312 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = Math.min(vector[i], this[i]); |
| 69313 | return this.check(); |
| 69314 | } |
| 69315 | max(vector) { |
| 69316 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = Math.max(vector[i], this[i]); |
| 69317 | return this.check(); |
no test coverage detected