How does one partition a listin Rebol 2? I don't care about final order of partitions.
e.g. I imagined there would be a function something like this:
lst: [1 5 6 5 5 2 1 3]
probe partition lst ; Assuming identity function by default
[[1 1] [5 5 5] [6] [2] [3]]
probe partition/by lst even?
[[6 2] [1 5 5 5 1 3]]
If there is no such inbuilt function, what is the idiomatic way of constructing it in Rebol?