14#ifndef ROOT_StringUtils 
   15#define ROOT_StringUtils 
   26std::vector<std::string> 
Split(std::string_view str, std::string_view 
delims, 
bool skipEmpty = 
false);
 
   35template <
class StringCollection_t>
 
   41                          [&sep](
auto const &
a, 
auto const &
b) { 
return a + sep + 
b; });
 
 
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
 
std::string Join(const std::string &sep, StringCollection_t &&strings)
Concatenate a list of strings with a separator.
 
std::vector< std::string > Split(std::string_view str, std::string_view delims, bool skipEmpty=false)
Splits a string at each character in delims.