Registry / utility / boost-bind

boost-bind

JSON →
library1.90.0vcpkgunverified

A library for binding arguments to functions, similar to std::bind.

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

Binds arguments to a function using Boost.Bind.

#include <boost/bind.hpp> #include <iostream> void print(int a, int b) { std::cout << a << " " << b << "\n"; } int main() { auto f = boost::bind(print, 1, 2); f(); return 0; }
Debug
Known issues
gotchaBoost.Bind is largely superseded by std::bind and lambdas in C++11 and later.
fix
Prefer std::bind or lambdas for new code.
affects: all
Upgrade
Version history
1.90.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
8
Meta
1
Amazon
1
Resources

No resource links recorded.

boost-bind — pip install boost-bind · libregistry