pub trait DistributionValueProduct<D, T, U>where
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,
{ // Required method fn only_value_joint(self) -> IndependentValueArrayJoint<D, T, U>; }

Required Methods§

Implementors§

source§

impl<I, D, T, U> DistributionValueProduct<D, T, U> for Iwhere
I: Iterator<Item = D>,
D: Distribution<Value = T, Condition = U>,
T: RandomVariable,
U: RandomVariable,