[This is preliminary documentation and is subject to change.]
An equatable pair of integers
Namespace: Microsoft.Research.Naiad.Frameworks.DifferentialDataflow
Assembly: Microsoft.Research.Naiad.DifferentialDataflow (in Microsoft.Research.Naiad.DifferentialDataflow.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public struct IntPair : IEquatable<IntPair>
The IntPair type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| IntPair |
Constructs a new pair from the given integers.
|
Methods
| Name | Description | |
|---|---|---|
| Equals |
Returns true if and only if this and the other pair are element-wise equal.
| |
| GetHashCode |
Returns a hashcode for this pair.
(Overrides ValueTypeGetHashCode.) | |
| ToString |
Returns a string representation of this pair.
(Overrides ValueTypeToString.) |
Fields
| Name | Description | |
|---|---|---|
| s |
The first integer.
| |
| t |
The second integer.
|
See Also