Comparison: Difference between revisions

From The K Language Wiki
Content added Content deleted
(add comparison page)
 
(add equal primitive)
Line 1: Line 1:
{{primitive|x&lt;y<br>x&gt;y}}
{{primitive|x&lt;y<br>x&gt;y}}


The comparison primitives in K are <code><</code> and <code>></code> which stand for lesser and greater than respectively.
The comparison primitives in K are <code><</code>, <code>></code> and <code>=</code> which stand for lesser than, greater than and equal to respectively.


character comparison is done via ASCII codes/UTF-8 code points, based on the implementation.
character comparison is done via ASCII codes/UTF-8 code points, based on the implementation.
Line 13: Line 13:
"abc" > "!c "
"abc" > "!c "
1 0 1
1 0 1

2 56 1 = (2;4;"a")
1 0 0
</pre>
</pre>

Revision as of 07:52, 15 July 2021

Comparison
x<y
x>y

The comparison primitives in K are <, > and = which stand for lesser than, greater than and equal to respectively.

character comparison is done via ASCII codes/UTF-8 code points, based on the implementation.

The comparison functions always give a boolean value, 1 or 0.

 1 2 3 < 3 1 5
1 0 1

 "abc" > "!c "
1 0 1

 2 56 1 = (2;4;"a")
1 0 0