Show / Hide Table of Contents

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
[Flags]
[Serializable]
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]

Extension Methods

EnumConverter.ToInt64<BoundType>()
EnumConverter.ToInt32<BoundType>()
EnumConverter.ToInt16<BoundType>()
EnumConverter.ToByte<BoundType>()
EnumConverter.ToUInt64<BoundType>()
EnumConverter.ToUInt32<BoundType>()
EnumConverter.ToUInt16<BoundType>()
EnumConverter.ToSByte<BoundType>()
EnumConverter.IsOneOf<BoundType>(BoundType[])
AtomicEnum.VolatileRead<BoundType>()
AtomicEnum.VolatileWrite<BoundType>(BoundType)
Sequence.Skip<BoundType, T>(Int32)
ExpressionBuilder.Const<BoundType>()
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX