pub struct TransformList<R>{ /* private fields */ }
unstable-enable
only.Expand description
§Availability
This API is marked as unstable and is only available when the unstable-enable
crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.
Implementations§
Source§impl<R> TransformList<R>
impl<R> TransformList<R>
Sourcepub fn new(row_count: usize) -> Self
pub fn new(row_count: usize) -> Self
§Availability
This API is marked as unstable and is only available when the unstable-enable
crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.
Sourcepub fn replay<S: Copy + RingStore<Type = R>, T: TransformTarget<R>>(
&self,
ring: S,
target: T,
)
pub fn replay<S: Copy + RingStore<Type = R>, T: TransformTarget<R>>( &self, ring: S, target: T, )
§Availability
This API is marked as unstable and is only available when the unstable-enable
crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.
Sourcepub fn replay_transposed<S: Copy + RingStore<Type = R>, T: TransformTarget<R>>(
&self,
ring: S,
target: T,
)
pub fn replay_transposed<S: Copy + RingStore<Type = R>, T: TransformTarget<R>>( &self, ring: S, target: T, )
§Availability
This API is marked as unstable and is only available when the unstable-enable
crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.
Sourcepub fn to_matrix<S: Copy + RingStore<Type = R>>(
&self,
ring: S,
) -> OwnedMatrix<R::Element>
pub fn to_matrix<S: Copy + RingStore<Type = R>>( &self, ring: S, ) -> OwnedMatrix<R::Element>
§Availability
This API is marked as unstable and is only available when the unstable-enable
crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.
Trait Implementations§
Source§impl<R> TransformTarget<R> for TransformList<R>
impl<R> TransformTarget<R> for TransformList<R>
Source§fn transform<S: Copy + RingStore<Type = R>>(
&mut self,
ring: S,
i: usize,
j: usize,
transform: &[<R as RingBase>::Element; 4],
)
fn transform<S: Copy + RingStore<Type = R>>( &mut self, ring: S, i: usize, j: usize, transform: &[<R as RingBase>::Element; 4], )
Auto Trait Implementations§
impl<R> Freeze for TransformList<R>where
R: ?Sized,
impl<R> RefUnwindSafe for TransformList<R>
impl<R> Send for TransformList<R>
impl<R> Sync for TransformList<R>
impl<R> Unpin for TransformList<R>
impl<R> UnwindSafe for TransformList<R>
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
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>
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>
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