Struct DoubleRange
Represents a range over double values.
public readonly struct DoubleRange
- Inherited Members
Constructors
DoubleRange(string, double, bool, double, bool)
public DoubleRange(string label, double min, bool minInclusive, double max, bool maxInclusive)
Parameters
Properties
Label
Label that identifies this range.
public string Label { get; }
Property Value
Max
Maximum.
public double Max { get; }
Property Value
MaxInclusive
True if the maximum value is inclusive.
public bool MaxInclusive { get; }
Property Value
Min
Minimum.
public double Min { get; }
Property Value
MinInclusive
True if the minimum value is inclusive.
public bool MinInclusive { get; }