pub trait FftField: PrimeField + ParallelCmp + From<u64> {
    const S: usize;
    const ROOT_OF_UNITY: Self;

    fn pow(self, val: u64) -> Self;
}
Expand description

This is fft field This is used for fft and has roots of unity

Required Associated Constants§

Required Methods§

Implementors§