public bool IsBetweenEither_BoundsType(sbyte value, sbyte min, sbyte max, IsBetweenBoundsType boundsType)
 {
     return(value.IsBetweenEither(min, max, boundsType));
 }
 /// <summary>
 /// Determines whether the specified value is inclusively between the smaller of min and max and the larger of min and max.
 /// </summary>
 /// <param name="value">The value.</param>
 /// <param name="min">The minimum.</param>
 /// <param name="max">The maximum.</param>
 /// <returns><c>true</c> if the specified minimum is between min and max; otherwise, <c>false</c>.</returns>
 public static bool IsBetweenEither(this sbyte value, sbyte min, sbyte max)
 {
     return(value.IsBetweenEither(min, max, IsBetweenBoundsType.Inclusive));
 }
 public bool IsBetweenEither_Default(sbyte value, sbyte min, sbyte max)
 {
     return(value.IsBetweenEither(min, max));
 }