IndexValuePair Structure

Defines an index/value pair.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public struct IndexValuePair : IEquatable<IndexValuePair>
Inheritance
Object    ValueType    IndexValuePair
Implements
IEquatableIndexValuePair

Remarks

An IndexValuePair structure groups a zero based index to a value. This is useful if the position of a particular value inside a given matrix has to be returned.

For example, method Max(DoubleMatrix) uses an IndexValuePair to return the maximum value and its (say, first) linear position in the specified data matrix, where matrix entries are interpreted as linearly ordered following a column major ordering.

Properties

Index Gets the index in the index/value pair.
Value Gets the value in the index/value pair.

Methods

Equals(IndexValuePair) Indicates whether the current object is equal to another object of the same type.
Equals(Object)Indicates whether this instance and a specified object are equal.
(Overrides ValueTypeEquals(Object))
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeReturns the hash code for this instance.
(Overrides ValueTypeGetHashCode)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)

Operators

Equality(IndexValuePair, IndexValuePair) Returns a value that indicates whether an IndexValuePair instance is equal to another IndexValuePair instance.
Inequality(IndexValuePair, IndexValuePair) Returns a value that indicates whether an IndexValuePair instance is not equal to another IndexValuePair instance.

See Also