Skip to content

Commit 421a23a

Browse files
authored
add link to note about deprecation of managed collections (#22)
1 parent 1907fc6 commit 421a23a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This implementation gives credit and acknowledgement to the [Zig language](https
3636
#### Features
3737
* Offers idiomatic, generic-based Zig API - allocator support, iterators, capacity hints, clearing, resizing, etc.
3838
* A few flavors to choose from
39-
* NOTE: Future versions of Zig will be deprecating the `managed` variants, and this repo will be following suit.
39+
* NOTE: Future versions of Zig [will be deprecating the `managed` variants](https://ziglang.org/download/0.14.0/release-notes.html#Embracing-Unmanaged-Style-Containers), and this repo will be following suit.
4040
* Hash-based: everyday usecase, optimized for lookups primarily, insertion/removal secondarily - [further reading](https://devlog.hexops.com/2022/zig-hashmaps-explained/)
4141
* HashSetManaged - initializes with an allocator and holds it internally (built on top of unmanaged)
4242
* HashSetUnmanaged - does not hold an allocator, smaller footprint
@@ -224,4 +224,4 @@ zigup build docs && cp -a zig-out/docs/. docs/
224224

225225
# Alternatively, using Zigup:
226226
zigup run <zig-version> build docs && cp -a zig-out/docs/. docs/
227-
```
227+
```

0 commit comments

Comments
 (0)