pub trait RootsOfUnity: Sized + 'static {
const MAX_ROU_PO2: usize;
const ROU_FWD: &'static [Self];
const ROU_REV: &'static [Self];
}
Expand description
Required Associated Constants§
Sourceconst MAX_ROU_PO2: usize
const MAX_ROU_PO2: usize
Maximum root of unity which is a power of 2 (i.e., there is a 2^MAX_ROU_PO2th root of unity, but no 2^(MAX_ROU_PO2+1)th root.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.