Click or drag to resize

WritableComparable<T>.LessThanOrEqual Operator

Checks if the first operand sorts before or equal to the right operand.

Namespace: Ookii.Jumbo.IO
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public static bool operator <=(
	WritableComparable<T>? left,
	WritableComparable<T>? right
)

Parameters

left  WritableComparable<T>
The left operand of the comparison.
right  WritableComparable<T>
The right operand of the comparison.

Return Value

Boolean
true if left comes earlier in the sort order than right; otherwise, false.
See Also