pub struct PrecomputedTwiddleAccess<F, SEvals = Vec<F>> { /* private fields */ }
Expand description
Twiddle access method using a larger table of precomputed constants.
This implementation precomputes all $2^k$ twiddle factors for a domain of size $2^k$.
Implementations§
source§impl<F: BinaryField> PrecomputedTwiddleAccess<F>
impl<F: BinaryField> PrecomputedTwiddleAccess<F>
Trait Implementations§
source§impl<F, SEvals> TwiddleAccess<F> for PrecomputedTwiddleAccess<F, SEvals>
impl<F, SEvals> TwiddleAccess<F> for PrecomputedTwiddleAccess<F, SEvals>
Auto Trait Implementations§
impl<F, SEvals> Freeze for PrecomputedTwiddleAccess<F, SEvals>where
SEvals: Freeze,
impl<F, SEvals> RefUnwindSafe for PrecomputedTwiddleAccess<F, SEvals>where
SEvals: RefUnwindSafe,
F: RefUnwindSafe,
impl<F, SEvals> Send for PrecomputedTwiddleAccess<F, SEvals>
impl<F, SEvals> Sync for PrecomputedTwiddleAccess<F, SEvals>
impl<F, SEvals> Unpin for PrecomputedTwiddleAccess<F, SEvals>
impl<F, SEvals> UnwindSafe for PrecomputedTwiddleAccess<F, SEvals>where
SEvals: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more