Enum InclusiveOptions
Provides options for Between<T1, T2, T3>(T1, T2, T3, InclusiveOptions) clusivity.
Namespace: X10D.Math
Assembly: X10D.dll
Syntax
public enum InclusiveOptions : int
Fields
Name | Description |
---|---|
Inclusive | Indicates that the comparison will treat both the upper and lower bound as exclusive. |
LowerInclusive | Indicates that the comparison will treat the lower bound as exclusive. |
None | Indicates that the comparison will be exclusive. |
UpperInclusive | Indicates that the comparison will treat the upper bound as exclusive. |