helpers
| 153 | |
| 154 | // helpers |
| 155 | inline bool is_digits(const std::string &str) { |
| 156 | return std::all_of(str.begin(), str.end(), ::isdigit); |
| 157 | } |
| 158 | |
| 159 | template<typename T, size_t N> |
| 160 | inline bool in_array(T val, const std::array <T, N> &arr) { |
no test coverage detected