 | Pair<TKey, TValue>.LessThanOrEqual Operator |
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
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
- Type: Ookii.Jumbo.IO.Pair<TKey, TValue>
A Pair<TKey, TValue> or null. - right
- Type: Ookii.Jumbo.IO.Pair<TKey, TValue>
A Pair<TKey, TValue> or null.
Return Value
Type:
Booleantrue if
left is less than
right; otherwise,
false.
See Also