| 136 | } |
| 137 | |
| 138 | std::vector<float> stringToFloatVector(const std::string &s) |
| 139 | { |
| 140 | return stringToNumericVector<float>(s); |
| 141 | } |
| 142 | std::vector<double> stringToDoubleVector(const std::string &s) |
| 143 | { |
| 144 | return stringToNumericVector<double>(s); |
no outgoing calls
no test coverage detected