I'm rather new to the J programming language and I have a question about equivalent tacit expressions in J.
I found two lines of J that were equivalent, but the conjunction in the code (^:
)'s arguments were switched using the bracket operators.
I was mainly wondering how this expression:
u ^: x y
is equivalent to this expression:
x u @] ^: [ y
I would appreciate any J programmers to explain how the two are equivalent.