this post was submitted on 05 Feb 2025
3 points (100.0% liked)

Zig Programming Language

178 readers
5 users here now

A lemm.ee community for Zig!

founded 1 year ago
MODERATORS
 

From the README:

Similar to std.MultiArrayList() but backed by fixed size arrays with a shared runtime length.

Each field of T becomes an array with max length buffer_capacity. To access the arrays as slices use items(field) or constItems(field).

Useful when a struct of small arrays is desired with capacity that is known at compile time. Like std.BoundedArray, MultiBoundedArrays are only values and thus may be copied.

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here