Each left: Difference between revisions

From The K Language Wiki
Content added Content deleted
(add each right page)
 
("More lowercasing")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{primitive|x f\:y}}
{{primitive|x f\:y}}


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


<pre>
<pre>
Line 12: Line 12:
== See Also ==
== See Also ==
[[each right]]
[[each right]]

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

Latest revision as of 04:42, 9 July 2022

Each left
x f\:y

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

 3 4 5 +\:(2 3;4 5;6)
((5 6;7 8;9)
 (6 7;8 9;10)
 (7 8;9 10;11))

See Also[edit]

each right