REBOL Document

Lesser-or-equal? - Function Summary


Summary:

Returns TRUE if the first value is less than or equal to the second value.

Usage:

lesser-or-equal? value1 value2

Arguments:

value1 - The value1 argument.

value2 - The value2 argument.

Description:

Returns FALSE for all other values. For string-based datatypes, the sorting order is used for comparison with character casing ignored (uppercase = lowercase).


    print lesser-or-equal? "abc" "abd"
    true


    print lesser-or-equal? 10-June-1999 12-june-1999
    true


    print lesser-or-equal? 4.3.2.1 1.2.3.4
    false


    print lesser-or-equal? 1:23 10:00
    true

Related:

< - Returns TRUE if the first value is less than the second value.
<= - Returns TRUE if the first value is less than or equal to the second value.
<> - Returns TRUE if the values are not equal.
= - Returns TRUE if the values are equal.
> - Returns TRUE if the first value is greater than the second value.
>= - Returns TRUE if the first value is greater than or equal to the second value.
max - Returns the greater of the two values.
min - Returns the lesser of the two values.


<Back | Index | Next>

Copyright 2004 REBOL Technologies