Class KeyRange
Key range.
public sealed record KeyRange : IEquatable<KeyRange>
- Inheritance
-
KeyRange
- Implements
- Inherited Members
Constructors
KeyRange(bool, bool)
Key range.
public KeyRange(bool LowerOpen, bool UpperOpen)
Parameters
Properties
Lower
Lower bound.
public Key? Lower { get; init; }
Property Value
LowerOpen
If true lower bound is open.
public bool LowerOpen { get; init; }
Property Value
Upper
Upper bound.
public Key? Upper { get; init; }
Property Value
UpperOpen
If true upper bound is open.
public bool UpperOpen { get; init; }