Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the equivalent to D's taskPool.parallel() in C++

Tags:

c++

d

Is there an equivalent feature to D's parallel() from the std.parallelism module in C++?

like image 963
thinwybk Avatar asked Oct 29 '22 04:10

thinwybk


1 Answers

As far as I know, there is no equivalent in the standard C++ library.

There probably is something similar in some 3rd party C++ library. Unfortunately I am not aware of any such library as I do not do C++ programming for over 15 years...

like image 171
DejanLekic Avatar answered Nov 15 '22 05:11

DejanLekic