mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-15 23:51:25 -07:00
Render examples.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user