(vector)
| 17240 | return this.check(); |
| 17241 | } |
| 17242 | min(vector) { |
| 17243 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = Math.min(vector[i], this[i]); |
| 17244 | return this.check(); |
| 17245 | } |
| 17246 | max(vector) { |
| 17247 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = Math.max(vector[i], this[i]); |
| 17248 | return this.check(); |
no test coverage detected