Can I do something like this in sway?
struct ArrayPair<T, const N: usize> {
left: [T; N],
right: [T; N],
}
The above is possible in rust, but I don’t think Sway supports it, I get compiler errors, and was assuming if there is some way to achieve this.