[][src]Trait twang::Mix

pub trait Mix {
    pub fn mix(self) -> Signal;
}

Trait for synthesizing multiple sounds together.

This works on arrays, slices, and iterators over either Signal or &Signal.

Required methods

pub fn mix(self) -> Signal[src]

Add multiple signals together.

Loading content...

Implementors

impl<B: Borrow<Signal>, I: IntoIterator<Item = B>> Mix for I[src]

Loading content...