Is there support for constant generics in sway?

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.

Let me check what we have available @bajpai244