狗屎Minimax坏我代码

This commit is contained in:
SoulliesOfficial
2026-04-18 13:57:19 -04:00
parent 41140a2017
commit 7379583165
473 changed files with 34480 additions and 8069 deletions

View File

@@ -81,6 +81,12 @@ namespace SLSUtilities.General
if (_lookup.Count == 0 && _entries.Count > 0) Rebuild();
return _lookup.TryGetValue(key, out value);
}
public Dictionary<TKey, TValue> ToDictionary()
{
if (_lookup.Count == 0 && _entries.Count > 0) Rebuild();
return new Dictionary<TKey, TValue>(_lookup);
}
// ================= 核心:排序与重建 =================