23 Aug
2017
23 Aug
'17
10:49 p.m.
On Wed, Aug 23, 2017 at 3:18 PM, Soul Studios via Boost
Storing a vector of pointers is not only less cumbersome than injecting structures into the original objects, it's less expensive.
Intrusive doesn't model vectors, that would be pointless. It models lists (single and double), and sets (ordered and unordered). Beast uses intrusive for the header fields container: https://github.com/boostorg/beast/blob/develop/include/boost/beast/http/fiel... Boost.Intrusive is one of my favorite Boost libraries, it is incredibly well written and well maintained on more platforms than I can count. It is very handy. Thanks