Hello,

What would be the best option to parallelize this code:

type T a end
f(i) = T(i)
v = map(f, collect(1:1:100))

This example could sound stupid but the point is that I have a function 
```f``` that returns a rather complicated user-defined type ```T```, and I 
need to store a lot of these types in an ```Array```.
I've read a bit about the parallel paradigm of Julia and I honestly 
wouldn't know how to do such a thing.

Any hint?

Many thanks!

Reply via email to