pub trait ValuableDistribution: Distribution + Sized {
    fn value<T2, F>(
        self,
        value: F
    ) -> ValuedDistribution<Self, Self::Value, T2, Self::Condition, F>
    where
        T2: RandomVariable,
        F: Fn(&T2) -> Result<Self::Value, DistributionError> + Clone + Send + Sync
; }

Required Methods

.

Examples
// Example template not implemented for trait functions

Implementors