docs: Fix SKILL.md规范 violations - Remove ## 方法列表 and flatten ### sub-headers in ## 公共方法

This commit is contained in:
2026-03-19 02:01:18 +08:00
parent 8e85fd98b8
commit 5257f3d75c
68 changed files with 718 additions and 1289 deletions

View File

@@ -12,33 +12,16 @@
## 公共方法
### 生命周期
| 方法 | 描述 |
|------|------|
| `LinearAllocator` | 构造线性分配器 |
| `~LinearAllocator` | 析构函数,释放底层缓冲区 |
### 内存操作
| 方法 | 描述 |
|------|------|
| `Allocate` | 顺序分配内存 |
| `Free` | 无效果(不支持) |
| `Reallocate` | 不支持(始终返回 nullptr |
| `Clear` | 清空所有分配 |
### 标记和回滚
| 方法 | 描述 |
|------|------|
| `GetMarker` | 获取当前位置标记 |
| `SetMarker` | 回滚到指定标记位置 |
### 查询方法
| 方法 | 描述 |
|------|------|
| `GetUsedSize` | 获取已使用字节数 |
| `GetCapacity` | 获取总容量 |