| PairTKey, TValueLessThan Operator |
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public 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
- Type: Ookii.Jumbo.IOPairTKey, TValue
A PairTKey, TValue or . - right
- Type: Ookii.Jumbo.IOPairTKey, TValue
A PairTKey, TValue or .
Return Value
Type:
Boolean if
left is less than
right; otherwise,
.
See Also