6 lines
134 B
Plaintext
6 lines
134 B
Plaintext
const PinnedArray = struct(.{ .sliceable = true }, $T) {
|
|
pointer: [&]T = #cast(0),
|
|
length: u32 = 0,
|
|
capacity: u32 = 0,
|
|
};
|