Which form of iterator is being used here? Thank you!
https://code.kx.com/q4m3/A_Built-in_Functions/#a88-ssr
You can use the over
iterator with ssr
to replace multiple items.
(ssr/)[“results_%div_%dept.csv”; (“%div”;“%dept”); (“banking”;“m&a”)]
https://code.kx.com/q/ref/accumulators/#ternary-values
You can use a sample to see how it progresses:
({-1 .Q.s1 x
yz!(x;y;z);x+y+z}/)[0;1 2 3;4 5 6]
xy
z!0 1 4 x
yz!5 2 5
xy
z!12 3 6 21
And on the ssr
example:
({-1 .Q.s1 x
yz!(x;y;z);ssr[x;y;z]}/)["results_%div_%dept.csv"; ("%div";"%dept"); ("banking";"m&a")]
xy
z!(“results_%div_%dept.csv”;“%div”;“banking”) x
y`z!(“results_banking_%dept.csv”;“%dept”;“m&a”) “results_banking_m&a.csv”
Thank you very much! May I ask where is the documentation on “-1” used here?