Merge pull request #6423 from Barinzaya/small-array-fmt

Small_Array formatting
This commit is contained in:
Jeroen van Rijn
2026-03-15 13:37:06 +01:00
committed by GitHub

View File

@@ -21,7 +21,7 @@ Example:
}
*/
Small_Array :: struct($N: int, $T: typeid) where N >= 0 {
data: [N]T,
data: [N]T `fmt:",len"`,
len: int,
}