ark_poly::domain

Trait DomainCoeff

Source
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.

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.

Implementors§

Source§

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