I have a large array of float.
I would like to call QtConcurrent::map()
on it and change the values in place.
Can I do that without making a copy of the array?
It seems map()
takes a QVector
as parameter and I can't find a mean to initialize a QVector
from an array without making a copy.