use it to get pointer to row in matrix or to get pointer to matrix from 3d array
| 423 | |
| 424 | /// use it to get pointer to row in matrix or to get pointer to matrix from 3d array |
| 425 | T *get_address (int index0) |
| 426 | { |
| 427 | return &origin[index0 * get_stride (0)]; |
| 428 | } |
| 429 | |
| 430 | /// use it to get pointer to row in 3d array |
| 431 | T *get_address (int index0, int index1) |
nothing calls this directly
no outgoing calls
no test coverage detected