=
Equal To r←x=y
r
is the result of the scalar equality comparison of x
and y
:
- if
x
andy
are both characters,r
is true if they are the same character; - if
x
andy
are both numbers,r
is true if|x-y
is less than or equal toct×x⌈⍥|y
, wherect
is the constant for comparison tolerance which is set to1⏨¯14
(); - if
x
andy
are of different types,r
is always false.