aboutsummaryrefslogtreecommitdiff
path: root/lib/std/SinglyLinkedList.zig
AgeCommit message (Collapse)Author
2025-10-25SinglyLinkedList.remove docs: Assumes -> assertsRyan Liptak
Removing a node that is not in the list invokes safety-checked illegal behavior, so "asserts" is the recommended language to use.
2025-10-25`*LinkedList.remove()` assumes node is in the listIOKG04
probably closes https://github.com/ziglang/zig/issues/16795
2025-04-03de-genericify SinglyLinkedListAndrew Kelley
by making it always intrusive, we make it a more broadly useful API, and avoid binary bloat.