↧
Answer by Barry for Simple multi-dimensional Array class in C++11
I think your class isn't nearly as useful enough as it could be due to your choices in member variables. Furthermore, it's less efficient than it could be. Also the code is written in a style that...
View ArticleSimple multi-dimensional Array class in C++11
The new version of the code can be reviewed in Simple multi-dimensional Array class in C++11 - follow-up.The following code implements a simple multi-dimensional array class (hyper_array::array).I...
View Article