Registry / utility / boost-intrusive

boost-intrusive

JSON →
library1.90.0vcpkgunverified

Intrusive containers and algorithms for C++.

vcpkg install boost-intrusive
INSTALL
IMPORT
SIG · BOOST-INTRUSIVE
B
boost-intrusive
utilitycppv1.90.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

boost/intrusive/list.hpp
#include <boost/intrusive/list.hpp>

Create an intrusive doubly-linked list.

#include <boost/intrusive/list.hpp> #include <iostream> struct MyClass : boost::intrusive::list_base_hook<> { int value; MyClass(int v) : value(v) {} }; int main() { boost::intrusive::list<MyClass> list; MyClass a(1), b(2); list.push_back(a); list.push_back(b); for (auto& item : list) std::cout << item.value << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.90.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
4
Meta
1
Amazon
1
Resources

No resource links recorded.

boost-intrusive — pip install boost-intrusive · libregistry