pub trait DomainCoeff<F: FftField>: Copy + Send + Sync + Add<Output = Self> + Sub<Output = Self> + AddAssign + SubAssign + Zero + MulAssign<F> + Debug + PartialEq { }
Expand description

Types that can be FFT-ed must implement this trait.

Implementors§

source§

impl<T, F> DomainCoeff<F> for Twhere F: FftField, T: Copy + Send + Sync + Add<Output = Self> + Sub<Output = Self> + AddAssign + SubAssign + Zero + MulAssign<F> + Debug + PartialEq,