Tuple class that supports 4 values
OperationsConstructor.
New(a:A, b:B, c:C, d:D)
Name | Type | Description |
---|---|---|
a | A | first parameter |
b | B | second parameter |
c | C | third parameter |
d | D | forth parameter |
Returns the first value
method : public : GetFirst() ~ A
Type | Description |
---|---|
A | first value |
Returns the forth value
method : public : GetForth() ~ D
Type | Description |
---|---|
D | forth value |
Returns the second value
method : public : GetSecond() ~ B
Type | Description |
---|---|
B | second value |
Returns the third value
method : public : GetThird() ~ C
Type | Description |
---|---|
C | third value |
Formats tuple into a string
method : public : ToString() ~ String
Type | Description |
---|---|
String | string representation |