22 std::stringstream ss(str);
25 while (getline(ss, item, delim))
This file has a definition of utils::split.
Vec< Str > split(const Str &str, char delim=' ')
Mimicking Python's split.
std::string Str
Str is an alias for string.
std::vector< T > Vec
Vec is an alias for vector (same as list in Python).
Namespace for utility functions.