Struct bitpolymul::FftPoly
source · pub struct FftPoly { /* private fields */ }
Implementations§
source§impl FftPoly
impl FftPoly
pub fn new() -> Self
pub fn resize(&mut self, n: usize)
pub fn encode(&mut self, data: &[u64])
pub fn encode_new(data: &[u64]) -> Self
pub fn mult_eq(&mut self, a: &FftPoly)
pub fn mult(&mut self, a: &FftPoly, b: &FftPoly)
pub fn add_eq(&mut self, a: &FftPoly)
pub fn add(&mut self, a: &FftPoly, b: &FftPoly)
pub fn decode(self, dest: &mut [u64])
pub fn decode_with_cache(self, cache: &mut DecodeCache, dest: &mut [u64])
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FftPoly
impl RefUnwindSafe for FftPoly
impl Send for FftPoly
impl Sync for FftPoly
impl Unpin for FftPoly
impl UnwindSafe for FftPoly
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