random question... I've got a list like `["a", "b...
# announcements
m
random question... I've got a list like
["a", "b", "c", "d"]
and i want to transform that into
[Pair("a","b"), Pair("c","d")]
(or
[["a","b",],["c","d"]]
. is there any method to partition a list by SIZE?