Point<T> Structure

Represents a point in a series.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
C#
public readonly struct Point<T>
where T : struct, new(), IComparable<T>
Inheritance
Object    ValueType    Point<T>

Type Parameters

T
Represents the type of the abscissa.

Constructors

Point<T>Represents a point in a series.

Properties

ArgGets the argument from the point.
ValueGets the value at the point's date.

Methods

EqualsChecks if the argument is a point with the same values.
(Overrides ValueType.Equals(Object))
GetHashCodeReturns a hashcode for the series.
(Overrides ValueType.GetHashCode())
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringGets a text representation of the point.
(Overrides ValueType.ToString())

Operators

Equality(Point<T>, Point<T>)Checks two points for equality.
Inequality(Point<T>, Point<T>)Checks two points for inequality.

See Also