#include <string_view>
#include <string>
#include <vector>
#include <numeric>
|
| namespace | ROOT |
| | tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tbb::task_arena without forward declaring tbb::interface7
|
| |
|
| template<class StringCollection_t > |
| std::string | ROOT::Join (const std::string &sep, StringCollection_t &&strings) |
| | Concatenate a list of strings with a separator.
|
| |
| std::vector< std::string > | ROOT::Split (std::string_view str, std::string_view delims, bool skipEmpty) |
| | Splits a string at each character in delims.
|
| |