Struct snarkvm_algorithms::fft::domain::IFFTPrecomputation
source · [−]pub struct IFFTPrecomputation<F: FftField> { /* private fields */ }
Expand description
An iterator over the elements of the domain.
Implementations
sourceimpl<F: FftField> IFFTPrecomputation<F>
impl<F: FftField> IFFTPrecomputation<F>
pub fn precomputation_for_subdomain<'a>(
&'a self,
domain: &EvaluationDomain<F>
) -> Option<Cow<'a, Self>>
Trait Implementations
sourceimpl<F: Clone + FftField> Clone for IFFTPrecomputation<F>
impl<F: Clone + FftField> Clone for IFFTPrecomputation<F>
sourcefn clone(&self) -> IFFTPrecomputation<F>
fn clone(&self) -> IFFTPrecomputation<F>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<F: Debug + FftField> Debug for IFFTPrecomputation<F>
impl<F: Debug + FftField> Debug for IFFTPrecomputation<F>
sourceimpl<F: PartialEq + FftField> PartialEq<IFFTPrecomputation<F>> for IFFTPrecomputation<F>
impl<F: PartialEq + FftField> PartialEq<IFFTPrecomputation<F>> for IFFTPrecomputation<F>
sourcefn eq(&self, other: &IFFTPrecomputation<F>) -> bool
fn eq(&self, other: &IFFTPrecomputation<F>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl<F: Eq + FftField> Eq for IFFTPrecomputation<F>
impl<F: FftField> StructuralEq for IFFTPrecomputation<F>
impl<F: FftField> StructuralPartialEq for IFFTPrecomputation<F>
Auto Trait Implementations
impl<F> RefUnwindSafe for IFFTPrecomputation<F> where
F: RefUnwindSafe,
impl<F> Send for IFFTPrecomputation<F>
impl<F> Sync for IFFTPrecomputation<F>
impl<F> Unpin for IFFTPrecomputation<F> where
F: Unpin,
impl<F> UnwindSafe for IFFTPrecomputation<F> where
F: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.