TowerVR
1.0
|
Represents a functional tuple that can be used to store two values of different types inside one object. More...
Public Member Functions | |
Tuple (T1 item1, T2 item2) | |
Create a new tuple value More... | |
override string | ToString () |
override int | GetHashCode () |
override bool | Equals (object o) |
bool | Equals (Tuple< T1, T2 > other) |
void | Unpack (Action< T1, T2 > unpackerDelegate) |
Static Public Member Functions | |
static bool | operator== (Tuple< T1, T2 > a, Tuple< T1, T2 > b) |
static bool | operator!= (Tuple< T1, T2 > a, Tuple< T1, T2 > b) |
Properties | |
T1 | Item1 [get] |
Retyurns the first element of the tuple More... | |
T2 | Item2 [get] |
Returns the second element of the tuple More... | |
Represents a functional tuple that can be used to store two values of different types inside one object.
T1 | The type of the first element |
T2 | The type of the second element |
Create a new tuple value
item1 | First element of the tuple |
second | Second element of the tuple |
override bool Tuple< T1, T2 >.Equals | ( | object | o | ) |
override int Tuple< T1, T2 >.GetHashCode | ( | ) |
override string Tuple< T1, T2 >.ToString | ( | ) |
void Tuple< T1, T2 >.Unpack | ( | Action< T1, T2 > | unpackerDelegate | ) |
|
get |
Retyurns the first element of the tuple
|
get |
Returns the second element of the tuple