Each prior: Difference between revisions

From The K Language Wiki
Content added Content deleted
(add eachprior)
 
(add johne difference suggestion)
Line 6:
 
<pre>
+-':1 6 2 3 4 5
1 3 5 7-4 1 91
 
5+-':1 6 2 3 4 5
6 3-4 5 7-4 1 91
</pre>

Revision as of 03:34, 28 July 2021

Each prior
f':x
x f':y

Each prior applies a two argument function(dyad) to each element, and the element prior to it.

If provided with a left argument, uses it as an initial value.

 -':1 6 2 3 4
1 5 -4 1 1

 5-':1 6 2 3 4
-4 5 -4 1 1