1
0
mirror of synced 2024-12-02 18:17:20 +01:00
TaikoLocalServer/SharedProject/Utils/ValueHelpers.cs

14 lines
344 B
C#
Raw Normal View History

2023-09-09 14:58:20 +02:00
namespace SharedProject.Utils;
public static class ValueHelpers
{
public static T Min<T>(T a, T b) where T : IComparable
{
return Comparer<T>.Default.Compare(a, b) <= 0 ? a : b;
}
public static T Max<T>(T a, T b) where T : IComparable
{
return Comparer<T>.Default.Compare(a, b) >= 0 ? a : b;
}
}