When the pattern `[Posn(x, y), ...]` matches a list of positions,
since `Posn(x, y)` is followed by `...` the `x` is bound to a sequence of first coordinates and `y` is bound to a sequence of second coordinates.
In the template the `Posn(y, x)` is followed by `...` so the same number of positions is produced as the common length of x and y.
soegaard|11 months ago
In the template the `Posn(y, x)` is followed by `...` so the same number of positions is produced as the common length of x and y.
laszlokorte|11 months ago
If I had to guess:
If I am correct then the only difference between flipping all and flipping just the first is `...` vs `rest`Y_Y|11 months ago