Tagged Questions
7
votes
3answers
126 views
C++ CRTP and accessing derived's nested typedefs from base
edit: I'll put a github link here when I am done altering my design for anyone who is interested.
Background
I'm replacing a boost::intrusive, intrusive_set, with my own implementation as 64-bit ...
7
votes
1answer
1k views
Boost.Intrusive and unordered_map
I am looking to use an intrusive unordered_map. For some reason there is only an unordered_set in the library. There is also an intrusive hashtable but I'm not sure it has the same functunality, also ...
2
votes
2answers
269 views
Boost Intrusive List hook
What is the difference in a base hook and a member hook in Boost::Intrusive library and when is one better to use then the other?
I've read the boost documentation, but its not that explanatory.