| 5 | namespace PS { |
| 6 | |
| 7 | template<typename K, typename V> class KVVector; |
| 8 | template<typename K, typename V> using KVVectorPtr = std::shared_ptr<KVVector<K,V>>; |
| 9 | |
| 10 | // key-value vector, the (global) keys are sorted and unique. Both keys and |
nothing calls this directly
no outgoing calls
no test coverage detected