str < str
- operator uint <( str left, str right )
- operator uint <=( str left, str right )
- operator uint %<( str left, str right )
- operator uint %<=( str left, str right )
Comparison operation.
str left,
str right
)
Return value
Returns 1 if the first string is less than the second one. Otherwise, it returns 0.
str <= str
Comparison operation.
str left,
str right
)
Return value
Returns 1 if the first string is less or equal the second one. Otherwise, it returns 0.
str %< str
Comparison operation with ignore case.
str left,
str right
)
Return value
Returns 1 if the first string is less than the second one with ignore case. Otherwise, it returns 0.
str %<= str
Comparison operation with ignore case.
str left,
str right
)
Return value
Returns 1 if the first string is less or equal the second one with ignore case. Otherwise, it returns 0.
Related links | Source |