Unsafe code review
Disclaimer: It is hand written code for purpose of learning
I want to scatter Vec<T> into count size pieces and give each thread a piece for processing.
After processing is done, I want to gather my Vec<T> back.
Full source:
Also, additional points if you know library name which implements this pattern properly.