public struct IndexValuePair : IEquatable<IndexValuePair>
Public Structure IndexValuePair
Implements IEquatable(Of IndexValuePair)
public value class IndexValuePair : IEquatable<IndexValuePair>
[<SealedAttribute>]
type IndexValuePair =
struct
inherit ValueType
interface IEquatable<IndexValuePair>
end
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.
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)) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
GetHashCode | Returns the hash code for this instance. (Overrides ValueTypeGetHashCode) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType) |
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. |