  | PairTKey, TValueGreaterThan 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>  : boolParameters
- left  PairTKey, TValue
 - A PairTKey, TValue or .
 - right  PairTKey, TValue
 - A PairTKey, TValue or .
 
Return Value
Boolean if 
left is greater than 
right; otherwise, 
.
See Also