Struct ov::util::Joined#

template<typename Container>
struct Joined#

Helper struct to join container’s elements to string using user string as separator. The output string is generated in operator<< and can be used in any context where std::string is expected. Example: std::vector<int> vec = {1, 2, 3}; std::cout << Joined{vec, “,”} << std::endl; // Output: 1,2,3.

Template Parameters:

Container