Enum BoundType
Indicates whether an endpoint of some range is contained in the range itself ("closed") or not ("open").
Namespace: DotNext
Assembly: DotNext.dll
Syntax
public enum BoundType : byte
Remarks
If a range is unbounded on a side, it is neither open nor closed on that side; the bound simply does not exist.
Fields
Name | Description |
---|---|
Closed | Both endpoints are considered part of the set. |
LeftClosed | The left endpoint value is considered part of the set: [X, Y) |
Open | Both endpoints are not considered part of the set: (X, Y) |
RightClosed | The right endpoint value is considered part of the set: (X, Y] |