inline std::string to_string()

in src/cpp/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/viewable_collections.h [35:50]


inline std::string to_string(Op op)
{
	switch (op)
	{
		case Op::ADD:
			return "Add";
		case Op::UPDATE:
			return "Update";
		case Op::REMOVE:
			return "Remove";
		case Op::ACK:
			return "Ack";
		default:
			return "";
	}
}