each prior

From The K Language Wiki
Revision as of 04:42, 9 July 2022 by Promovicz (talk | contribs) ("More lowercasing")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Each prior
f':x
x f':y

each prior applies a dyadic function 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