OperatorRMDestination
| 376 | |
| 377 | // OperatorRMDestination |
| 378 | static std::vector<std::string_view> |
| 379 | _tokenize(swoc::TextView text, char delimiter) |
| 380 | { |
| 381 | std::vector<std::string_view> tokens; |
| 382 | |
| 383 | while (text) { |
| 384 | tokens.push_back(text.take_prefix_at(delimiter)); |
| 385 | } |
| 386 | |
| 387 | return tokens; |
| 388 | } |
| 389 | |
| 390 | void |
| 391 | OperatorRMDestination::initialize(Parser &p) |
no test coverage detected