(row, col)
| 71276 | return col * this.RANK + row; |
| 71277 | } |
| 71278 | getElement(row, col) { |
| 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; |
no outgoing calls
no test coverage detected