Registry / utility / boost-tuple

boost-tuple

JSON →
library1.90.0vcpkgunverified

A library providing a tuple type, similar to std::tuple.

vcpkg install boost-tuple
INSTALL
IMPORT
SIG · BOOST-TUPLE
B
boost-tuple
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/tuple/tuple.hpp
#include <boost/tuple/tuple.hpp>

Creates and accesses a Boost.Tuple.

#include <boost/tuple/tuple.hpp> #include <iostream> int main() { boost::tuple<int, double, std::string> t(1, 2.5, "hello"); std::cout << boost::get<0>(t) << " " << boost::get<1>(t) << " " << boost::get<2>(t) << "\n"; return 0; }
Debug
Known issues
gotchaBoost.Tuple is largely superseded by std::tuple in C++11 and later.
fix
Prefer std::tuple for new code.
affects: all
Upgrade
Version history
1.90.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources

No resource links recorded.

boost-tuple — pip install boost-tuple · libregistry