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

@@ -4,6 +4,8 @@
**类型**: `class` (template)
**头文件**: `XCEngine/Containers/Array.h`
**描述**: 模板动态数组容器,提供自动扩容的数组实现。
## 概述
@@ -35,7 +37,7 @@
| [PushBack](pushback.md) | 尾部添加(拷贝/移动) |
| [EmplaceBack](emplaceback.md) | 就地构造尾部添加 |
| [PopBack](popback.md) | 尾部移除 |
| [begin/end](iterator.md) | 获取迭代器 |
| [begin/end](begin-end.md) | 获取迭代器 |
| [SetAllocator](setallocator.md) | 设置内存分配器 |
## 使用示例