| 441 | |
| 442 | template <typename T> |
| 443 | const void *SimpleTensor<T>::operator()(const Coordinates &coord) const |
| 444 | { |
| 445 | return _buffer.get() + coord2index(_shape, coord) * _num_channels; |
| 446 | } |
| 447 | |
| 448 | template <typename T> |
| 449 | void *SimpleTensor<T>::operator()(const Coordinates &coord) |
nothing calls this directly
no test coverage detected