| 551 | } |
| 552 | |
| 553 | std::string ToString(const KVMap& data, const KVMap::const_iterator& it) { |
| 554 | if (it == data.end()) { |
| 555 | return "END"; |
| 556 | } else { |
| 557 | return "'" + it->first + "->" + it->second + "'"; |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | std::string ToString(const KVMap& data, |
| 562 | const KVMap::const_reverse_iterator& it) { |