Subtract: Difference between revisions

From The K Language Wiki
Content added Content deleted
(add "primitive" template)
("Better category ordering, add redirects to categories, fix pseudo-adverb categories")
 
(7 intermediate revisions by 3 users not shown)
Line 1:
{{primitive|x-y}}
The '''Subtract''' or '''Minus''' function, generally denoted by <code>-</code>, is used for subtraction in K.
 
The '''Subtractsubtract''' or '''Minusminus''' function, generally denoted by <code>-</code>, is used for subtraction in K.
The ''Subtract'' primitive is [[Atomicity|fully atomic.]]<syntaxhighlight>
 
The ''Subtractsubtract'' primitive is [[Atomicity|fully atomic.]].<syntaxhighlightpre>
1-2
-1
Line 12 ⟶ 13:
(-22 -33
-6 4)
</pre>
</syntaxhighlight>
 
[[Category:Verbs]]
[[Category:Operator verbs]]
[[Category:Primitives]]

Latest revision as of 06:42, 9 July 2022

Subtract
x-y

The subtract or minus function, generally denoted by -, is used for subtraction in K.

The subtract primitive is fully atomic.

 1-2
-1

 1 2 3 - 4 5 6
-3 -3 -3

 ((23;45);(3;4)) - ((45;78);(9;0))
(-22 -33
 -6 4)