mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 02:45:41 +00:00
Introduce Between clusivity
This commit is contained in:
parent
6c27227c3e
commit
64bcb34a11
@ -9,14 +9,26 @@ namespace X10D.Tests.Core
|
|||||||
public class ComparableTests
|
public class ComparableTests
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tests for <see cref="ComparableExtensions.Between{T}" />.
|
/// Tests <see cref="ComparableExtensions.Between{T1, T2, T3}" />
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[TestMethod]
|
[TestMethod]
|
||||||
public void Between()
|
public void Between()
|
||||||
{
|
{
|
||||||
Assert.IsTrue(5.Between(2, 7));
|
const int lower = 5;
|
||||||
Assert.IsTrue(10.Between(9, 11));
|
const int upper = 15;
|
||||||
Assert.IsFalse(100.Between(80, 99));
|
const int value = 10;
|
||||||
|
|
||||||
|
Assert.IsTrue(value.Between(lower, upper), "value.Between(lower, upper)");
|
||||||
|
Assert.IsFalse(lower.Between(value, upper), "lower.Between(value, upper)");
|
||||||
|
Assert.IsFalse(upper.Between(lower, value), "upper.Between(lower, value)");
|
||||||
|
|
||||||
|
Assert.IsTrue(upper.Between(lower, upper, Clusivity.UpperInclusive), "upper.Between(lower, upper, Clusivity.UpperInclusive)");
|
||||||
|
Assert.IsTrue(upper.Between(lower, upper, Clusivity.Inclusive), "upper.Between(lower, upper, Clusivity.Inclusive)");
|
||||||
|
Assert.IsFalse(upper.Between(lower, upper, Clusivity.LowerInclusive), "upper.Between(lower, upper, Clusivity.LowerInclusive)");
|
||||||
|
|
||||||
|
Assert.IsTrue(lower.Between(lower, upper, Clusivity.LowerInclusive), "lower.Between(lower, upper, Clusivity.LowerInclusive)");
|
||||||
|
Assert.IsTrue(lower.Between(lower, upper, Clusivity.Inclusive), "lower.Between(lower, upper, Clusivity.Inclusive)");
|
||||||
|
Assert.IsFalse(lower.Between(lower, upper, Clusivity.UpperInclusive), "lower.Between(lower, upper, Clusivity.UpperInclusive)");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
28
X10D/src/ComparableExtensions/Clusivity.cs
Normal file
28
X10D/src/ComparableExtensions/Clusivity.cs
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
namespace X10D;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Provides options for <see cref="ComparableExtensions.Between{T1, T2, T3}" /> clusivity.
|
||||||
|
/// </summary>
|
||||||
|
[Flags]
|
||||||
|
public enum Clusivity : byte
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates that the comparison will be exclusive.
|
||||||
|
/// </summary>
|
||||||
|
Exclusive,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates that the comparison will treat the upper bound as exclusive.
|
||||||
|
/// </summary>
|
||||||
|
UpperInclusive,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates that the comparison will treat the lower bound as exclusive.
|
||||||
|
/// </summary>
|
||||||
|
LowerInclusive,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates that the comparison will treat both the upper and lower bound as exclusive.
|
||||||
|
/// </summary>
|
||||||
|
Inclusive
|
||||||
|
}
|
@ -16,6 +16,7 @@ namespace X10D
|
|||||||
/// <param name="value">The value to compare.</param>
|
/// <param name="value">The value to compare.</param>
|
||||||
/// <param name="lower">The exclusive lower bound.</param>
|
/// <param name="lower">The exclusive lower bound.</param>
|
||||||
/// <param name="upper">The exclusive upper bound.</param>
|
/// <param name="upper">The exclusive upper bound.</param>
|
||||||
|
/// <param name="clusivity">The comparison clusivity.</param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// <see langword="true" /> if <paramref name="value" /> is between the <paramref name="lower" /> and
|
/// <see langword="true" /> if <paramref name="value" /> is between the <paramref name="lower" /> and
|
||||||
/// <paramref name="upper" />
|
/// <paramref name="upper" />
|
||||||
@ -43,7 +44,7 @@ namespace X10D
|
|||||||
/// // True
|
/// // True
|
||||||
/// </code>
|
/// </code>
|
||||||
/// </example>
|
/// </example>
|
||||||
public static bool Between<T1, T2, T3>(this T1 value, T2 lower, T3 upper)
|
public static bool Between<T1, T2, T3>(this T1 value, T2 lower, T3 upper, Clusivity clusivity = Clusivity.Exclusive)
|
||||||
where T1 : IComparable<T2>, IComparable<T3>
|
where T1 : IComparable<T2>, IComparable<T3>
|
||||||
where T2 : IComparable<T3>
|
where T2 : IComparable<T3>
|
||||||
where T3 : IComparable<T2>
|
where T3 : IComparable<T2>
|
||||||
@ -60,7 +61,15 @@ namespace X10D
|
|||||||
nameof(lower));
|
nameof(lower));
|
||||||
}
|
}
|
||||||
|
|
||||||
return value.CompareTo(lower) > 0 && value.CompareTo(upper) < 0;
|
bool lowerComparison = (clusivity & Clusivity.LowerInclusive) != 0
|
||||||
|
? value.CompareTo(lower) >= 0
|
||||||
|
: value.CompareTo(lower) > 0;
|
||||||
|
|
||||||
|
bool upperComparison = (clusivity & Clusivity.UpperInclusive) != 0
|
||||||
|
? value.CompareTo(upper) <= 0
|
||||||
|
: value.CompareTo(upper) < 0;
|
||||||
|
|
||||||
|
return lowerComparison && upperComparison;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user