An enumeration representing the possible interval types classified according to whether or not the endpoints are included in the interval.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public enum Type
Visual Basic (Declaration)
Public Enumeration Type
Visual C++
public enum class Type

Members

Member nameDescription
Open
Neither endpoint is included.
Closed
Both endpoints are included.
OpenClosed
Left endpoint is not included, but right endpoint is included.
ClosedOpen
Left endpoint is included, but right endpoint is not included.

See Also