Given an array type like [n]u8 where n is a constant (comptime_int), is there some way to specify a concrete type of [*]u8?
Stated another way: Can I abstract over arrays of a known size and many-item pointers?
I'm asking because I have some code that is currently generic over array size, but most of the methods on that type don't actually care about the array's length and it would be convenient to instantiate the generic type with n = *.
Thanks!