src/cpp/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdList.h [241:249]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - friend std::string to_string(RdList const& value) { std::string res = "["; for (auto const& p : value) { res += to_string(p) + ","; } return res + "]"; } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/cpp/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdSet.h [148:156]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - friend std::string to_string(RdSet const& value) { std::string res = "["; for (auto const& p : value) { res += to_string(p) + ","; } return res + "]"; } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -