pub struct NttMatrix<K: ArraySize>(/* private fields */);
Expand description
A K x K matrix of NTT-domain polynomials. Each vector represents a row of the matrix, so that multiplying on the right just requires iteration.
Implementations§
Trait Implementations§
source§impl<K: PartialEq + ArraySize> PartialEq for NttMatrix<K>
impl<K: PartialEq + ArraySize> PartialEq for NttMatrix<K>
impl<K: ArraySize> StructuralPartialEq for NttMatrix<K>
Auto Trait Implementations§
impl<K> Freeze for NttMatrix<K>
impl<K> RefUnwindSafe for NttMatrix<K>
impl<K> Send for NttMatrix<K>
impl<K> Sync for NttMatrix<K>
impl<K> Unpin for NttMatrix<K>
impl<K> UnwindSafe for NttMatrix<K>
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