Is there a standard library function to convert a ...
# getting-started
m
Is there a standard library function to convert a sequence of sequences like this:
{{A}, {B, C}, {D, E}}
to
{{A, B, D}, {A, C, D}, {A, B, E}, {A, C, E}}
?
Looks like it can be done with fold, with not too much difficulty.
k
There is no Cartesian product yet =/