Suppose I have the following code, where the | is a the caret:
adIdx = [ idx + [ |0 -1]
idx + [ 0 1]
idx + [ 0 1] ];
Activete decrease value by 1 once, and get this:
adIdx = [ idx + [ |-|2 -1]
idx + [ 0 1]
idx + [ 0 1] ];
I hoped to get this instead:
adIdx = [ idx + [ |-1 -1]
idx + [ 0 1]
idx + [ 0 1] ];