Hi there,
Got the following code:
| Array1 Array2 Array3 |
Array1 := #(1 2 3).
Array2 := #(4 5 6).
Array3 := (0 to: 2) collect: [ :i | !Selection of: #({i of: Array1}{i of: Array2})].
But of course it doesn't work.. So my question is: How can I create an array where each element is a selection of array elements?
Thanks!