Map and Table Calculation

<= or LE operator

Tests whether the outcome of a is less than or equal to the outcome of b, i.e. a <= b. Instead of using the <= sign, you may also use le.

Syntax

a <= b
a le b

Input

a is a value
Domain type: any Value domain
b is a value
Domain type: any Value domain

Output

<= returns: a boolean value, i.e. True, False or undefined
Domain: system domain Bool

Notes:

Tips:

Usable in

MapCalc, TabCalc, Simple calculators

Examples

Pocket line calculator examples:

? 10 <= 20

returns True

? 10 le 20

returns True

? 10 <= -20

returns False

MapCalc example:

OutMap = InMap <= 20

 

InMap

OutMap

50 45 -40
40 0 15
? 10 20
False False True
False True True
? True True

TabCalc example:

OutCol = InColA <= 20

 

InCol

OutCol

50

False

45

False

-40

True

40

False

0

True

15

True

?

?

10

True

20

True

See also:

= >
<> >=