why I can not copy a c style array to std::array – stackoverflow.com

I have this code: std::array<int,16> copyarray(int input[16]) { std::array<int, 16> result; std::copy(std::begin(input), std::end(input), std::begin(result)); return result; ...

from Hot Questions - Stack Exchange OnStackOverflow
via Blogspot

Share this

Artikel Terkait

0 Comment to "why I can not copy a c style array to std::array – stackoverflow.com"