Struct snarkvm_algorithms::fft::domain::FFTPrecomputation
source · pub struct FFTPrecomputation<F: FftField> { /* private fields */ }
Expand description
An iterator over the elements of the domain.
Implementations
sourceimpl<F: FftField> FFTPrecomputation<F>
impl<F: FftField> FFTPrecomputation<F>
pub fn to_ifft_precomputation(&self) -> IFFTPrecomputation<F>
pub fn precomputation_for_subdomain<'a>(
&'a self,
domain: &EvaluationDomain<F>
) -> Option<Cow<'a, Self>>
Trait Implementations
sourceimpl<F: FftField> CanonicalDeserialize for FFTPrecomputation<F>
impl<F: FftField> CanonicalDeserialize for FFTPrecomputation<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,
sourceimpl<F: FftField> CanonicalSerialize for FFTPrecomputation<F>
impl<F: FftField> CanonicalSerialize for FFTPrecomputation<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
sourceimpl<F: Clone + FftField> Clone for FFTPrecomputation<F>
impl<F: Clone + FftField> Clone for FFTPrecomputation<F>
sourcefn clone(&self) -> FFTPrecomputation<F>
fn clone(&self) -> FFTPrecomputation<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 moresourceimpl<F: Debug + FftField> Debug for FFTPrecomputation<F>
impl<F: Debug + FftField> Debug for FFTPrecomputation<F>
sourceimpl<F: PartialEq + FftField> PartialEq<FFTPrecomputation<F>> for FFTPrecomputation<F>
impl<F: PartialEq + FftField> PartialEq<FFTPrecomputation<F>> for FFTPrecomputation<F>
sourcefn eq(&self, other: &FFTPrecomputation<F>) -> bool
fn eq(&self, other: &FFTPrecomputation<F>) -> bool
sourceimpl<F: FftField> Valid for FFTPrecomputation<F>
impl<F: FftField> Valid for FFTPrecomputation<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 FFTPrecomputation<F>
impl<F: FftField> StructuralEq for FFTPrecomputation<F>
impl<F: FftField> StructuralPartialEq for FFTPrecomputation<F>
Auto Trait Implementations
impl<F> RefUnwindSafe for FFTPrecomputation<F>where
F: RefUnwindSafe,
impl<F> Send for FFTPrecomputation<F>
impl<F> Sync for FFTPrecomputation<F>
impl<F> Unpin for FFTPrecomputation<F>where
F: Unpin,
impl<F> UnwindSafe for FFTPrecomputation<F>where
F: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
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.