Represents an interval of real numbers.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Structure DateTimeInterval |
| C# |
|---|
public struct DateTimeInterval |
| C++ |
|---|
public value class DateTimeInterval |
Methods
| Icon | Type | Description |
|---|---|---|
| Add(DateTimeInterval, TimeSpan) |
Returns an interval shifted by a specified value..
| |
| Add(TimeSpan, DateTimeInterval) |
Returns an interval shifted by a specified value..
| |
| Addition(DateTimeInterval, TimeSpan) |
Returns an interval shifted by a specified value..
| |
| Addition(TimeSpan, DateTimeInterval) |
Returns an interval shifted by a specified value..
| |
| Contains(DateTime) |
Tests whether a number is contained in the interval.
| |
| Equality(DateTimeInterval, DateTimeInterval) |
Returns a value indicating whether two instances of DateTimeInterval are equal.
| |
| Equals(Object) |
Returns a value indicating whether this instance is equal to a specified object.
| |
| Finalize() | ||
| GetHashCode() |
Returns the hash code for this instance.
| |
| GetType() | Gets the Type of the current instance. | |
| Inequality(DateTimeInterval, DateTimeInterval) |
Returns a value indicating whether two instances of DateTimeInterval are not equal.
| |
| MemberwiseClone() | Creates a shallow copy of the current Object. | |
| Subtract(DateTimeInterval, TimeSpan) |
Returns an interval shifted to the left by a specified value.
| |
| Subtraction(DateTimeInterval, TimeSpan) |
Returns an interval shifted to the left by a specified value.
| |
| ToString() |
Gets a string representation of the interval.
| |
| ToString(String) |
Gets a string representation of the interval.
| |
| ToString(String, IFormatProvider) |
Gets a string representation of the interval.
|
Constructors
| Icon | Type | Description |
|---|---|---|
| DateTimeIntervalNew(DateTime, DateTime) |
Constructs a new interval.
|
Properties
| Icon | Type | Description |
|---|---|---|
| LowerBound |
Gets the lower bound of the interval.
| |
| UpperBound |
Gets the upper bound of the interval.
| |
| Width |
Gets the width of the interval.
|
Remarks
Use the DateTimeInterval structure to represent an interval of real numbers.
The LowerBound and UpperBound properties return the
bounds of the interval. The Width property returns the width of the interval.
The Contains(DateTime) method determines whether a value is contained within an interval.
Arithmetic operators are defined for combining intervals. For languages that do not support operator overloading, equivalent staticSharedstatic methods have been supplied.
DateTimeInterval structures are immutable. The lower and upper bounds can not be changed. Use the constructor or one of the operator methods to create an DateTimeInterval with new values for the boundaries.