-
Why does @ need :: and why does . need () in amend?
https://code.kx.com/q/ref/amend/
Based on the above, why does . need () to get the entire list and @ need ()?
Surely this would imply:
q) 1 2 3 4 5 . () /this is NOT the case
1 2 3 4 5and
q) list @ :: /this is NOT the case
listHowever
q)list @ enlist[::] /this is the case
listCan anyone help me make sense of this?
Log in to reply.