pub struct NeighborsLastBreadthFirst<DC> {
pub domain_context: DC,
}Fields§
§domain_context: DCThe domain context from which the twiddles are pulled.
Trait Implementations§
Source§impl<F, DC> AdditiveNTT for NeighborsLastBreadthFirst<DC>where
F: BinaryField,
DC: DomainContext<Field = F>,
impl<F, DC> AdditiveNTT for NeighborsLastBreadthFirst<DC>where
F: BinaryField,
DC: DomainContext<Field = F>,
type Field = F
Source§fn forward_transform<P: PackedField<Scalar = F>>(
&self,
data: FieldSliceMut<'_, P>,
skip_early: usize,
skip_late: usize,
)
fn forward_transform<P: PackedField<Scalar = F>>( &self, data: FieldSliceMut<'_, P>, skip_early: usize, skip_late: usize, )
Source§fn inverse_transform<P: PackedField<Scalar = F>>(
&self,
_data: FieldSliceMut<'_, P>,
_skip_early: usize,
_skip_late: usize,
)
fn inverse_transform<P: PackedField<Scalar = F>>( &self, _data: FieldSliceMut<'_, P>, _skip_early: usize, _skip_late: usize, )
Inverse transformation of
Self::forward_transform. Read moreSource§fn domain_context(&self) -> &impl DomainContext<Field = F>
fn domain_context(&self) -> &impl DomainContext<Field = F>
The associated
DomainContext.Source§fn log_domain_size(&self) -> usize
fn log_domain_size(&self) -> usize
Auto Trait Implementations§
impl<DC> Freeze for NeighborsLastBreadthFirst<DC>where
DC: Freeze,
impl<DC> RefUnwindSafe for NeighborsLastBreadthFirst<DC>where
DC: RefUnwindSafe,
impl<DC> Send for NeighborsLastBreadthFirst<DC>where
DC: Send,
impl<DC> Sync for NeighborsLastBreadthFirst<DC>where
DC: Sync,
impl<DC> Unpin for NeighborsLastBreadthFirst<DC>where
DC: Unpin,
impl<DC> UnwindSafe for NeighborsLastBreadthFirst<DC>where
DC: 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