  | WritableComparableTLessThan Operator  | 
 
            Checks if the first operand sorts before the right operand.
            
 
    Namespace: 
   Ookii.Jumbo.IO
    Assembly:
   Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntaxpublic static bool operator <(
	WritableComparable<T> left,
	WritableComparable<T> right
)
Public Shared Operator < ( 
	left As WritableComparable(Of T),
	right As WritableComparable(Of T)
) As Boolean
public:
static bool operator <(
	WritableComparable<T>^ left, 
	WritableComparable<T>^ right
)
static let inline (<)
        left : WritableComparable<'T> * 
        right : WritableComparable<'T>  : boolParameters
- left
 - Type: Ookii.Jumbo.IOWritableComparableT
The left operand of the comparison. - right
 - Type: Ookii.Jumbo.IOWritableComparableT
The right operand of the comparison. 
Return Value
Type: 
Boolean if 
left comes earlier in
            the sort order than 
right; otherwise, 
.
See Also