| 29 | |
| 30 | template <class Type, int dimX, int dimY> |
| 31 | void BigArrayNormal<Type, dimX, dimY>::GetFour(Type res[2][2], int x, int y) const |
| 32 | { |
| 33 | ASSERT_RANGE(x, y); |
| 34 | ASSERT_RANGE(x + 1, y + 1); |
| 35 | res[0][0] = _array[y][x]; |
| 36 | res[0][1] = _array[y][x + 1]; |
| 37 | res[1][0] = _array[y + 1][x]; |
| 38 | res[1][1] = _array[y + 1][x + 1]; |
| 39 | } |
| 40 | |
| 41 | const int elemLog = 2; |
| 42 |
no outgoing calls
no test coverage detected