feat(memory): improve oversized alloc handling & cleanup

Enhanced FreeList to handle oversized allocations by bypassing chunk management and allocating directly from the OS, with proper header assignment and immediate release on free. Updated IUnsafeCollection<T> documentation, removed unnecessary array clearing in Clear() methods, refined UnsafeSlotMap initialization logic, and removed redundant default element addition. Bumped assembly version to 1.5.1.
This commit is contained in:
2026-03-18 20:12:41 +09:00
parent 7326c83948
commit 641b459997
8 changed files with 14 additions and 16 deletions

View File

@@ -396,8 +396,6 @@ public unsafe struct UnsafeSparseSet<T> : IUnsafeCollection<T>
_count = 0;
_nextId = 0;
Add(default, out _);
}
/// <inheritdoc/>