What's the "right" way to copy a vector into an array of its type? The length of the slice and vector are comptime known. Is there a one-liner that will do that assignment, or am I just as well off using a for loop?
I see there's a way to copy the vector out from the array. Found that here: #1160600566548926615 message
But I see no discussion of the reverse, placing the processed result array back from whence it came or into a different "result" array.
I guess that a @memcpy might accomplish it but is that heavy-handed and/or stupid?