1

The rank (or NumDims) parameter of boost::multi_array is a std::size_t template parameter.

Is there any way to give the array a dynamic rank instead of static? I'm assuming not, looking at the code but I might have missed something.

Timmmm
  • 88,195
  • 71
  • 364
  • 509

1 Answers1

0

That's not a feature of the library. You can emulate it, though:

sehe
  • 374,641
  • 47
  • 450
  • 633