Function branch

Source
pub fn branch<X, Y>(x: An<X>, y: An<Y>) -> An<Branch<X, Y>>
where X: AudioNode, Y: AudioNode<Inputs = X::Inputs>, X::Outputs: Add<Y::Outputs>, <X::Outputs as Add<Y::Outputs>>::Output: Size<f32>,
Expand description

Branch x and y. Identical with x ^ y.

  • Input(s): From x and y.
  • Output(s): Outputs of x followed with outputs of y.