Render examples.

This commit is contained in:
Jeroen van Rijn
2025-10-10 12:24:28 +02:00
parent 4068eeb5fa
commit ece213afca
29 changed files with 146 additions and 139 deletions
+6 -6
View File
@@ -1,8 +1,7 @@
// A dynamic array-like interface on a stack-allocated, fixed-size array.
package container_small_array
/*
The Small_Array type is optimal for scenarios where you need
A dynamic array-like interface on a stack-allocated, fixed-size array.
The `Small_Array` type is optimal for scenarios where you need
a container for a fixed number of elements of a specific type,
with the total number known at compile time but the exact
number to be used determined at runtime.
@@ -33,7 +32,7 @@ Example:
return
}
// the Small_Array can be an ordinary parameter 'generic' over
// the `Small_Array` can be an ordinary parameter 'generic' over
// the actual length to be usable with different sizes
print_elements :: proc(arr: ^small_array.Small_Array($N, rune)) {
for r in small_array.slice(arr) {
@@ -51,4 +50,5 @@ Output:
Hellope
*/
*/
package container_small_array