Struct dsp::signal::AddAmp [] [src]

pub struct AddAmp<A, B> { /* fields omitted */ }

An iterator that yields the sum of the frames yielded by both other and self in lock-step.

Trait Implementations

impl<A, B> Clone for AddAmp<A, B> where
    A: Clone,
    B: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<A, B> Iterator for AddAmp<A, B> where
    A: Signal,
    B: Signal,
    <A as Iterator>::Item: Frame,
    <B as Iterator>::Item: Frame,
    <<B as Iterator>::Item as Frame>::Sample == <<<A as Iterator>::Item as Frame>::Sample as Sample>::Signed,
    <<B as Iterator>::Item as Frame>::NumChannels == <<A as Iterator>::Item as Frame>::NumChannels
[src]

impl<A, B> ExactSizeIterator for AddAmp<A, B> where
    A: ExactSizeIterator,
    B: ExactSizeIterator,
    AddAmp<A, B>: Iterator
[src]