rd-cpp/src/rd_framework_cpp/src/main/impl/RdList.h [236:244]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - friend std::string to_string(RdList const& value) { std::string res = "["; for (auto const& p : value) { res += to_string(p) + ","; } return res + "]"; } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - rd-cpp/src/rd_framework_cpp/src/main/impl/RdSet.h [143:151]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - friend std::string to_string(RdSet const& value) { std::string res = "["; for (auto const& p : value) { res += to_string(p) + ","; } return res + "]"; } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -