pub struct AngularFrequencyTable {
pub sin_table: [f32; 256],
pub cos_table: [f32; 256],
pub resolution: usize,
}Expand description
Angular frequency table for SIMD-friendly operations
Fields§
§sin_table: [f32; 256]Precomputed sin values at π intervals
cos_table: [f32; 256]Precomputed cos values at π intervals
resolution: usizeTable resolution
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AngularFrequencyTable
impl RefUnwindSafe for AngularFrequencyTable
impl Send for AngularFrequencyTable
impl Sync for AngularFrequencyTable
impl Unpin for AngularFrequencyTable
impl UnwindSafe for AngularFrequencyTable
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