| 188 | } |
| 189 | |
| 190 | inline bool |
| 191 | HdrCsvIter::get_next_int(int &result) |
| 192 | { |
| 193 | auto val = this->get_next(); |
| 194 | |
| 195 | if (val) { |
| 196 | TextView parsed; |
| 197 | int n = swoc::svtoi(val, &parsed); |
| 198 | if (parsed) { |
| 199 | result = n; |
| 200 | return true; |
| 201 | } |
| 202 | } |
| 203 | return false; |
| 204 | } |
no test coverage detected