| 53 | |
| 54 | template<typename... IndicesTemplate> |
| 55 | double get(IndicesTemplate... Indices) const |
| 56 | { |
| 57 | /** check parameter number */ |
| 58 | static_assert(sizeof...(IndicesTemplate) == Dim, "Number of provided indices have to be equal to the number of dimensions!"); |
| 59 | |
| 60 | /** get value */ |
| 61 | return _Grid(_Index(Indices...)); |
| 62 | } |
| 63 | |
| 64 | double get(const VectorStatic<Dim> Indices) const |
| 65 | { |
no outgoing calls
no test coverage detected