(row, col, value)
| 71279 | return this[col * this.RANK + row]; |
| 71280 | } |
| 71281 | setElement(row, col, value) { |
| 71282 | this[col * this.RANK + row] = (0, _validators.checkNumber)(value); |
| 71283 | return this; |
| 71284 | } |
| 71285 | getColumn(columnIndex, result = new Array(this.RANK).fill(-0)) { |
| 71286 | const firstIndex = columnIndex * this.RANK; |
| 71287 | for(let i = 0; i < this.RANK; ++i)result[i] = this[firstIndex + i]; |
nothing calls this directly
no outgoing calls
no test coverage detected