Re: [julia-users] Merge partitions

2015-08-06 Thread Kevin Squire
In the Iterators.jl package, there is a chain(...) function, which chains
multiple iterators together.

On Thu, Jul 23, 2015 at 9:22 PM, Michele Zaffalon 
michele.zaffa...@gmail.com wrote:

 What should the outcome of the merge operation be? Not a simple
 concatenation, I imagine.

 On Tue, Jul 21, 2015 at 9:22 PM, Uthsav Chitra uthsav_chi...@brown.edu
 wrote:

 Is there any way to merge partitions together? For instance, could I do
 something like merge(partitions(1:n, 2), partitions(1:n, 3))? I essentially
 want to create one iterable object out of both of them.





Re: [julia-users] Merge partitions

2015-07-23 Thread Michele Zaffalon
What should the outcome of the merge operation be? Not a simple
concatenation, I imagine.

On Tue, Jul 21, 2015 at 9:22 PM, Uthsav Chitra uthsav_chi...@brown.edu
wrote:

 Is there any way to merge partitions together? For instance, could I do
 something like merge(partitions(1:n, 2), partitions(1:n, 3))? I essentially
 want to create one iterable object out of both of them.



[julia-users] Merge partitions

2015-07-21 Thread Uthsav Chitra
Is there any way to merge partitions together? For instance, could I do 
something like merge(partitions(1:n, 2), partitions(1:n, 3))? I essentially 
want to create one iterable object out of both of them.