Update array to support C++

This commit is contained in:
2025-08-10 16:18:21 +01:00
parent eee4387201
commit df29d851c2
6 changed files with 433 additions and 26 deletions

View File

@@ -0,0 +1,4 @@
([]() {{ \
persistent {T} buf[CAPACITY] = {{}}; \
return {ArrayType}{{buf, 0, CAPACITY, sizeof({T})}}; \
}}())