pub struct ExtraProduct<Composition> {
pub inner: Composition,
}
Fields§
§inner: Composition
Trait Implementations§
source§impl<P, Composition> CompositionPolyOS<P> for ExtraProduct<Composition>where
P: PackedField,
Composition: CompositionPolyOS<P>,
impl<P, Composition> CompositionPolyOS<P> for ExtraProduct<Composition>where
P: PackedField,
Composition: CompositionPolyOS<P>,
source§fn evaluate(&self, query: &[P]) -> Result<P, Error>
fn evaluate(&self, query: &[P]) -> Result<P, Error>
Evaluates the polynomial using packed values, where each packed value may contain multiple scalar values.
The evaluation follows SIMD semantics, meaning that operations are performed
element-wise across corresponding scalar values in the packed values. Read more
source§fn binary_tower_level(&self) -> usize
fn binary_tower_level(&self) -> usize
Returns the maximum binary tower level of all constants in the arithmetic expression.
Auto Trait Implementations§
impl<Composition> Freeze for ExtraProduct<Composition>where
Composition: Freeze,
impl<Composition> RefUnwindSafe for ExtraProduct<Composition>where
Composition: RefUnwindSafe,
impl<Composition> Send for ExtraProduct<Composition>where
Composition: Send,
impl<Composition> Sync for ExtraProduct<Composition>where
Composition: Sync,
impl<Composition> Unpin for ExtraProduct<Composition>where
Composition: Unpin,
impl<Composition> UnwindSafe for ExtraProduct<Composition>where
Composition: 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