pub struct ChunkOut<P, const R: usize>(pub P);Expand description
Fixed-ratio chunk adapter for grouped output.
Adapt a X -> [Y; R] processor to [X; N]->[Y; M = R*N] for any N
by flattening and re-chunking output.
This is the natural adapter for small fixed-ratio interpolation kernels.
Use ChunkOutPod when the output type is POD and the flattening cost
matters. This is a structural regrouping adapter, not a phased stream
interpolator; use Interpolator when the inner stage is naturally
Option<X> -> Y.
§Examples
use dsp_process::{ChunkOut, FnSplitProcess, Process, Split};
let mut p = Split::stateless(ChunkOut::<_, 2>(FnSplitProcess(|_: &mut (), x: i32| {
[x, -x]
})));
assert_eq!(p.process([2, 3]), [2, -2, 3, -3]);Tuple Fields§
§0: PTrait Implementations§
impl<P: Copy, const R: usize> Copy for ChunkOut<P, R>
Source§impl<C: SplitInplace<[X; 1], S>, S, X: Copy, const N: usize> SplitInplace<[X; N], S> for ChunkOut<C, 1>
impl<C: SplitInplace<[X; 1], S>, S, X: Copy, const N: usize> SplitInplace<[X; N], S> for ChunkOut<C, 1>
Auto Trait Implementations§
impl<P, const R: usize> Freeze for ChunkOut<P, R>where
P: Freeze,
impl<P, const R: usize> RefUnwindSafe for ChunkOut<P, R>where
P: RefUnwindSafe,
impl<P, const R: usize> Send for ChunkOut<P, R>where
P: Send,
impl<P, const R: usize> Sync for ChunkOut<P, R>where
P: Sync,
impl<P, const R: usize> Unpin for ChunkOut<P, R>where
P: Unpin,
impl<P, const R: usize> UnsafeUnpin for ChunkOut<P, R>where
P: UnsafeUnpin,
impl<P, const R: usize> UnwindSafe for ChunkOut<P, R>where
P: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, X, S, T, const L: usize> SplitViewInplace<ViewMut<'a, X, FrameMajor, L>, S> for T
impl<'a, X, S, T, const L: usize> SplitViewInplace<ViewMut<'a, X, FrameMajor, L>, S> for T
Source§fn inplace_view(&self, state: &mut S, xy: ViewMut<'a, X, FrameMajor, L>)
fn inplace_view(&self, state: &mut S, xy: ViewMut<'a, X, FrameMajor, L>)
Process one typed view in place.
Source§impl<'a, 'b, X, Y, S, T, const L: usize> SplitViewProcess<View<'a, X, FrameMajor, L>, ViewMut<'b, Y, FrameMajor, L>, S> for T
impl<'a, 'b, X, Y, S, T, const L: usize> SplitViewProcess<View<'a, X, FrameMajor, L>, ViewMut<'b, Y, FrameMajor, L>, S> for T
Source§fn process_view(
&self,
state: &mut S,
x: View<'a, X, FrameMajor, L>,
y: ViewMut<'b, Y, FrameMajor, L>,
)
fn process_view( &self, state: &mut S, x: View<'a, X, FrameMajor, L>, y: ViewMut<'b, Y, FrameMajor, L>, )
Process one typed input view into one typed output view.