0
Vector of doubles from block of bytes
is it possible to fill vector<double> from block of bytes read from binary file without looping to read each double and adding it
1 Answer
0
No, it is not possible. But you don't need to read in a loop. Just reed all your binary data and then process it in a loop.