i want to floor all the items in a std::vector and use bellow code :
for(const float &number : numbers)
number = floor(number);
but I need to use a parallel algorithm for this operation.is there any parallel algorithm in standard c++ for do efficiently an action like floor function on all items?