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§
source§impl<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§
source§impl<F: FftField> CanonicalDeserialize for IFFTPrecomputation<F>
impl<F: FftField> CanonicalDeserialize for IFFTPrecomputation<F>
fn deserialize_with_mode<R: Read>( reader: R, compress: Compress, validate: Validate ) -> Result<Self, SerializationError>
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_compressed_unchecked<R>(
reader: R
) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed_unchecked<R>(
reader: R
) -> Result<Self, SerializationError>where
R: Read,
source§impl<F: FftField> CanonicalSerialize for IFFTPrecomputation<F>
impl<F: FftField> CanonicalSerialize for IFFTPrecomputation<F>
fn serialize_with_mode<W: Write>( &self, writer: W, compress: Compress ) -> Result<(), SerializationError>
fn serialized_size(&self, compress: Compress) -> usize
fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn compressed_size(&self) -> usize
fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn uncompressed_size(&self) -> usize
source§impl<F: Clone + FftField> Clone for IFFTPrecomputation<F>
impl<F: Clone + FftField> Clone for IFFTPrecomputation<F>
source§fn clone(&self) -> IFFTPrecomputation<F>
fn clone(&self) -> IFFTPrecomputation<F>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<F: PartialEq + FftField> PartialEq for IFFTPrecomputation<F>
impl<F: PartialEq + FftField> PartialEq for IFFTPrecomputation<F>
source§fn 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 ==
.source§impl<F: FftField> Valid for IFFTPrecomputation<F>
impl<F: FftField> Valid for IFFTPrecomputation<F>
fn check(&self) -> Result<(), SerializationError>
fn batch_check<'a>(
batch: impl Iterator<Item = &'a Self> + Send
) -> Result<(), SerializationError>where
Self: 'a,
impl<F: Eq + FftField> Eq 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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.