Comparison: Difference between revisions

From The K Language Wiki
Content added Content deleted
(atomicity)
("Better category ordering, add redirects to categories, fix pseudo-adverb categories")
 
(5 intermediate revisions by 2 users not shown)
Line 3: Line 3:
The comparison primitives in K are <code><</code>, <code>></code> and <code>=</code> which stand for lesser than, greater than and equal to respectively. Comparisons are [[atomicity|fully atomic]].
The comparison primitives in K are <code><</code>, <code>></code> and <code>=</code> which stand for lesser than, greater than and equal to respectively. Comparisons are [[atomicity|fully atomic]].


Characters are compared as bytes, except in oK which supports Unicode and compares characters by their code points.
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.
The comparison functions always give a boolean value, 1 or 0.
Line 17: Line 17:
1 0 0
1 0 0
</pre>
</pre>

[[Category:Verbs]]
[[Category:Operator verbs]]
[[Category:Primitives]]

Latest revision as of 06:14, 9 July 2022

Comparison
x<y
x>y
x=y

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

Characters are compared as bytes, except in oK which supports Unicode and compares characters by their code points.

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