Files
CortexCore b125894cc3 1
2024-11-03 16:42:23 +08:00

14 lines
269 B
C#

using System.Collections.Generic;
using System.Linq;
namespace BITKit
{
public static partial class Extensions
{
public static float GetDifference(this IEnumerable<float> self)
{
return self.Max() - self.Min();
}
}
}