public static Arr <IDistribution> SetDistribution(this Arr <IDistribution> distributions, IDistribution distribution) { var index = distributions.FindIndex(d => d.DistributionType == distribution.DistributionType); RequireTrue(index.IsFound()); return(distributions.SetItem(index, distribution)); }