Lines Matching refs:map
19 #include <map>
25 * @brief Provides interfaces for thread-safe map operations.
65 * @brief Obtains the map size.
67 * In the multithread scenario, the map size returned is a tmp status,
78 * @brief Checks whether the map is empty.
84 * @return Returns <b>true</b> if the map is empty;
94 * @brief Inserts an element to the map.
109 * @brief Forcibly inserts an element to the map.
130 * @brief Searches for an element in the map.
189 * @brief Deletes all KV pairs from the map.
201 * @brief Iterates over the elements of the map.
218 std::map<K, V> map_;
220 std::map<K, V> Clone() const noexcept