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

    fn one() -> Self;
}
Expand description

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

Required Associated Constants

Required Methods

Implementors