Here:
type MyColumn[T: static[int]] = tuple[ints: array[T, int], strings:
array[T, string]]
var myTable: MyColumn[3] = (ints: [1, 2, 3], strings: ["one", "two",
"three"])
- New bie: tuple of fixed length arrays cdome
- Re: New bie: tuple of fixed length arrays stisa
- Re: New bie: tuple of fixed length arrays def
