docs(roadmap): mark slice bounds checking done in selfhost

Slice<T> bounds-checked indexing already works via lib/Slice.bux
This commit is contained in:
2026-06-14 17:48:45 +03:00
parent e5e490605a
commit e11dce56d2
+1 -1
View File
@@ -273,5 +273,5 @@ Task::Spawn(Worker, rx);
12.**CTFE** — Done 12.**CTFE** — Done
13.**Selfhost bootstrap loop** — Done 13.**Selfhost bootstrap loop** — Done
14.**Destructors / Drop** — Done in selfhost. 14.**Destructors / Drop** — Done in selfhost.
15. **Bounds checking on slices** Add `Slice<T>` type with bounds-checked indexing. 15. **Bounds checking on slices**`Slice<T>` with bounds-checked indexing works in selfhost via `lib/Slice.bux`.
16. **Concurrency** — Green threads + channels. 16. **Concurrency** — Green threads + channels.