Exemplo n.º 1
0
 public void ShouldBeInBetweenNumberWithoutOrder()
 {
     Assert.IsTrue(MathX.IsBetweenWithoutOrder(0, 1, -1));
 }
 public static bool IsBetweenWithoutOrder(
     this float value, float aInclusive, float bInclusive
     )
 => MathX.IsBetweenWithoutOrder(value, aInclusive, bInclusive);