Tagged Questions

7
votes
10answers
877 views

Boost::multi_array performance question

I am trying to compare the performance of boost::multi_array to native dynamically allocated arrays, with the following test program: #include <windows.h> #define _SCL_SECUR …
0
votes
1answer
82 views

boost::multi_index index by function call with parameter(s)

Hi Everyone I'm trying to make a boost::multi_index container that uses member functions w/ parameters as keys. class Data { public: std::string get(const std::string & _a …
1
vote
1answer
124 views

How to assign / copy a Boost::multi_array

I want to assign a copy of a boost::multi_array. How can I do this. The object where I want to assign it to has been initialized with the default constructors. This code does not …