docs: update containers API docs

This commit is contained in:
2026-03-20 02:35:01 +08:00
parent a647f5e8ec
commit 0c073db4e8
33 changed files with 135 additions and 56 deletions

View File

@@ -16,6 +16,10 @@ HashMap& operator=(HashMap&& other) noexcept;
- 拷贝赋值O(m_bucketCount + other.m_size)
- 移动赋值O(m_size),需要先清空当前内容
**线程安全:** ❌ 非线程安全
**异常:**
**示例:**
```cpp