 | Pair<TKey, TValue>.GreaterThan Operator |
Namespace: Ookii.Jumbo.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static bool operator >(
Pair<TKey, TValue>? left,
Pair<TKey, TValue>? right
)
Public Shared Operator > (
left As Pair(Of TKey, TValue),
right As Pair(Of TKey, TValue)
) As Boolean
public:
static bool operator >(
Pair<TKey, TValue>^ left,
Pair<TKey, TValue>^ right
)
static let inline (>)
left : Pair<'TKey, 'TValue> *
right : Pair<'TKey, 'TValue> : bool
Parameters
- left Pair<TKey, TValue>
- A Pair<TKey, TValue> or null.
- right Pair<TKey, TValue>
- A Pair<TKey, TValue> or null.
Return Value
Booleantrue if
left is greater than
right; otherwise,
false.
See Also