Table of Contents

Class InclusiveRange<T>

Namespace
Concordium.Sdk.Types
Assembly
Concordium.Sdk.dll

Range where Min and Max is within.

public sealed record InclusiveRange<T> : IEquatable<InclusiveRange<T>>

Type Parameters

T
Inheritance
InclusiveRange<T>
Implements
Inherited Members

Constructors

InclusiveRange(T, T)

Range where Min and Max is within.

public InclusiveRange(T Min, T Max)

Parameters

Min T

Min bound

Max T

Max bound

Properties

Max

Max bound

public T Max { get; init; }

Property Value

T

Min

Min bound

public T Min { get; init; }

Property Value

T