| 97 | |
| 98 | template<typename Size> |
| 99 | inline const std::string arraySizeToString(const Size size) |
| 100 | { |
| 101 | return "[" + std::to_string(size) + "]"; |
| 102 | } |
| 103 | |
| 104 | template<typename Index> |
| 105 | inline const std::string arrayIndexToString(const Index i) |
no test coverage detected