| 110 | |
| 111 | template<class TDataType> |
| 112 | unsigned int NDData<TDataType>::Size() const |
| 113 | { |
| 114 | return std::accumulate(mShape.data().begin(), mShape.data().end(), 1u, std::multiplies<unsigned int>{}); |
| 115 | } |
| 116 | |
| 117 | template<class TDataType> |
| 118 | std::string NDData<TDataType>::Info() const |
no test coverage detected