nexus-slab 2.1.0

A high-performance slab allocator optimized for predictable tail latency
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# nexus-slab Documentation

Pre-allocated slab allocator for deterministic latency.

## User Guide

- [Overview]overview.md — Architecture, when to use which slab type
- [Bounded Slab]bounded.md — Fixed-capacity, zero-growth allocation
- [Unbounded Slab]unbounded.md — Chunk-based growth, no copy on resize
- [Macro Allocators]macros.md — TLS-backed allocators via macro generation
- [BoxSlot & RcSlot]smart-handles.md — RAII and reference-counted slab handles
- [Byte Slab]byte-slab.md — Type-erased storage for heterogeneous types

## Internal Reference

- [SlotCell]slotcell.md — Union-based slot design, freelist mechanics