Short question: Is there a shorter way to do this
array<array<atomic<int>,n>,m> matrix;
I was hoping for something like
array< atomic< int>,n,m> matrix;
but it doesnt work...
|
Short question: Is there a shorter way to do this
I was hoping for something like
but it doesnt work... |
||||
|
When nested, std::array can become very hard to read and unnecessarily verbose. The opposite ordering of the dimensions can be especially confusing. For example:
compared to
Also, note that begin(), end() and size() all return meaningless values when you nest std::array. For these reasons I've created my own fixed size multidimensional array containers, array_2d and array_3d. They have the advantage that they work with C++98. They are analogous to std::array but for multidimensional arrays of 2 and 3 dimensions. They are safer and have no worse performance than built-in multidimensional arrays. I didn't include a container for multidimensional arrays with dimensions greater than 3 as they are uncommon. In C++11 a variadic template version could be made which supports an arbitrary number of dimensions (Something like Michael Price's example). An example of the two-dimensional variant:
Full documentation is available here: http://fsma.googlecode.com/files/fsma.html You can download the library here: http://fsma.googlecode.com/files/fsma.zip |
|||||||||||||
|
|
A palatable workaround for compilers that don't support template aliases yet is to use a simple metafunction to generate the type:
|
||||
|
|
|
A template alias might help out:
|
|||||||||||||||||
|
|
Solution using variadic templates (slightly more complex than the template alias, but more general purpose)
There might be some improvement on assigning to non-leaves of the array that could be made. I tested with a relatively recent build of clang/LLVM. Enjoy! |
||||
|
|
|
Here's a simple, generic version:
|
|||
|
|
>for starters. – Mat Oct 7 '11 at 15:19