pub struct IndexComposition<C, const N: usize> { /* private fields */ }
Expand description
An adapter which allows evaluating a composition over a larger query by indexing into it.
See index_composition
for a factory method.
Implementations§
Trait Implementations§
source§impl<C: Clone, const N: usize> Clone for IndexComposition<C, N>
impl<C: Clone, const N: usize> Clone for IndexComposition<C, N>
source§fn clone(&self) -> IndexComposition<C, N>
fn clone(&self) -> IndexComposition<C, N>
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<P: PackedField, C: CompositionPolyOS<P>, const N: usize> CompositionPolyOS<P> for IndexComposition<C, N>
impl<P: PackedField, C: CompositionPolyOS<P>, const N: usize> CompositionPolyOS<P> for IndexComposition<C, N>
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<C, const N: usize> Freeze for IndexComposition<C, N>where
C: Freeze,
impl<C, const N: usize> RefUnwindSafe for IndexComposition<C, N>where
C: RefUnwindSafe,
impl<C, const N: usize> Send for IndexComposition<C, N>where
C: Send,
impl<C, const N: usize> Sync for IndexComposition<C, N>where
C: Sync,
impl<C, const N: usize> Unpin for IndexComposition<C, N>where
C: Unpin,
impl<C, const N: usize> UnwindSafe for IndexComposition<C, N>where
C: 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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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