using System.Collections.Generic; namespace BayesSharp.Combiners { public interface ICombiner { /// /// Combine a list of numbers /// /// List of numbers to be combined double Combine(IEnumerable numbers); } }