Hi All

I've noticed the function "join" in the boost fusion library. However, it only joins two sequences. Was wondering whether there is (or can be easily made) a function that joins any number of sequences.

For example:

new_join(make_vector(1,2,3), make_vector(4,5), make_vector(6)) -> is the sequence 1,2,3,4,5,6

AND/OR (pass parameters in a sequence)

new_join(make_vector(make_
vector(1,2,3), make_vector(4,5), make_vector(6))) -> is the sequence 1,2,3,4,5,6

I'd prefer both the first and second versions, but even one version would be ok.

Thanks,

Clinton