Am I missing any tricks to do const operations with const generics on stable rust yet? e.g. ```rust struct FFTThing { time_buf: [f32; N], fft_buf: [Complex; N/2 + 1], } ```