Each right: Difference between revisions

From The K Language Wiki
Content added Content deleted
("Add category")
("More lowercasing")
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{primitive|x f/:y}}
{{primitive|x f/:y}}


'''Each right''' applies a [[dyadic]] function <code>f</code> to the entirety of <code>x</code> and each element of <code>y</code>.
'''each right''' applies a [[dyadic]] function <code>f</code> to the entirety of <code>x</code> and each element of <code>y</code>.


<pre>
<pre>
Line 14: Line 14:


[[Category:Adverbs]]
[[Category:Adverbs]]
[[Category:Primitives]]

Latest revision as of 04:42, 9 July 2022

Each right
x f/:y

each right applies a dyadic function f to the entirety of x and each element of y.

 3 +/:(2 3;4 5;6)
(5 6
 7 8
 9)

See Also[edit]

each left