TripleTFirst, TSecond, TThirdEquality Operator |
Determines if two triples are equal. Two triples are equal if the all three elements
compare equal using IComparable<T>.Equals or object.Equals.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic static bool operator ==(
Triple<TFirst, TSecond, TThird> pair1,
Triple<TFirst, TSecond, TThird> pair2
)
public:
static bool operator ==(
Triple<TFirst, TSecond, TThird> pair1,
Triple<TFirst, TSecond, TThird> pair2
)
Parameters
- pair1
- Type: X3Platform.CollectionsTripleTFirst, TSecond, TThird
First triple to compare. - pair2
- Type: X3Platform.CollectionsTripleTFirst, TSecond, TThird
Second triple to compare.
Return Value
Type:
BooleanTrue if the triples are equal. False if the triples are not equal.
See Also