Table of Contents

Struct DoubleRange

Namespace
Examine.Search
Assembly
Examine.Core.dll

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

label string
min double
minInclusive bool
max double
maxInclusive bool

Properties

Label

Label that identifies this range.

public string Label { get; }

Property Value

string

Max

Maximum.

public double Max { get; }

Property Value

double

MaxInclusive

True if the maximum value is inclusive.

public bool MaxInclusive { get; }

Property Value

bool

Min

Minimum.

public double Min { get; }

Property Value

double

MinInclusive

True if the minimum value is inclusive.

public bool MinInclusive { get; }

Property Value

bool