├── .drone.jsonnet ├── .drone ├── drone.bat └── drone.sh ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── appveyor.yml ├── bind.html ├── bind_as_compose.cpp ├── bind_visitor.cpp ├── doc ├── Jamfile.v2 ├── bind.qbk ├── bind │ ├── acknowledgements.qbk │ ├── examples.qbk │ ├── faq.qbk │ ├── implementation.qbk │ ├── interface.qbk │ ├── limitations.qbk │ ├── purpose.qbk │ └── troubleshooting.qbk ├── html │ ├── bind.html │ └── mem_fn.html ├── mem_fn.qbk └── mem_fn │ ├── acknowledgements.qbk │ ├── faq.qbk │ ├── implementation.qbk │ ├── interface.qbk │ └── purpose.qbk ├── include └── boost │ ├── bind.hpp │ ├── bind │ ├── apply.hpp │ ├── arg.hpp │ ├── bind.hpp │ ├── detail │ │ ├── bind_cc.hpp │ │ ├── bind_mf2_cc.hpp │ │ ├── bind_mf_cc.hpp │ │ ├── integer_sequence.hpp │ │ ├── result_traits.hpp │ │ └── tuple_for_each.hpp │ ├── make_adaptable.hpp │ ├── mem_fn.hpp │ ├── placeholders.hpp │ ├── protect.hpp │ └── std_placeholders.hpp │ ├── is_placeholder.hpp │ └── mem_fn.hpp ├── index.html ├── mem_fn.html ├── meta └── libraries.json └── test ├── CMakeLists.txt ├── Jamfile.v2 ├── apply_rv_test.cpp ├── apply_rv_test2.cpp ├── apply_test.cpp ├── apply_test2.cpp ├── arg_copy_fail.cpp ├── arg_copy_test.cpp ├── bind_and_or_test.cpp ├── bind_cdecl_mf_test.cpp ├── bind_const_test.cpp ├── bind_cpp20_test.cpp ├── bind_cv_test.cpp ├── bind_dm2_test.cpp ├── bind_dm3_test.cpp ├── bind_dm_test.cpp ├── bind_eq2_test.cpp ├── bind_eq3_test.cpp ├── bind_eq_test.cpp ├── bind_fastcall_mf_test.cpp ├── bind_fastcall_test.cpp ├── bind_fn2_test.cpp ├── bind_fnobj2_test.cpp ├── bind_function2_test.cpp ├── bind_function_ap_test.cpp ├── bind_function_test.cpp ├── bind_fwd2_test.cpp ├── bind_fwd_test.cpp ├── bind_lookup_problem_test.cpp ├── bind_mf2_test.cpp ├── bind_nested_rv_test.cpp ├── bind_no_placeholders_test.cpp ├── bind_noexcept_mf2_test.cpp ├── bind_noexcept_mf_test.cpp ├── bind_noexcept_test.cpp ├── bind_not_test.cpp ├── bind_over_mf2_test.cpp ├── bind_over_mf_test.cpp ├── bind_over_test.cpp ├── bind_placeholder_test.cpp ├── bind_ref_test.cpp ├── bind_rel_test.cpp ├── bind_rv_sp_test.cpp ├── bind_rvalue_test.cpp ├── bind_stateful_test.cpp ├── bind_stdcall_mf_test.cpp ├── bind_stdcall_test.cpp ├── bind_test.cpp ├── bind_type_test.cpp ├── bind_unary_addr.cpp ├── bind_unique_ptr_test.cpp ├── bind_visit_test.cpp ├── bind_void_dm_test.cpp ├── bind_void_mf_test.cpp ├── bind_void_test.cpp ├── cmake_install_test └── CMakeLists.txt ├── cmake_subdir_test └── CMakeLists.txt ├── global_placeholders.cpp ├── mem_fn_cdecl_ref_test.cpp ├── mem_fn_cdecl_test.cpp ├── mem_fn_derived_test.cpp ├── mem_fn_dm_test.cpp ├── mem_fn_eq_test.cpp ├── mem_fn_fastcall_ref_test.cpp ├── mem_fn_fastcall_test.cpp ├── mem_fn_noexcept_test.cpp ├── mem_fn_ref_test.cpp ├── mem_fn_rv_test.cpp ├── mem_fn_stdcall_ref_test.cpp ├── mem_fn_stdcall_test.cpp ├── mem_fn_test.cpp ├── mem_fn_unary_addr_test.cpp ├── mem_fn_void_test.cpp ├── placeholder_const_ref_test.cpp ├── placeholder_std_bind_test.cpp ├── protect_cpp20_test.cpp ├── protect_test.cpp ├── protect_test2.cpp ├── quick.cpp ├── ref_fn_test.cpp └── std_placeholders_test.cpp /.drone.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/.drone.jsonnet -------------------------------------------------------------------------------- /.drone/drone.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/.drone/drone.bat -------------------------------------------------------------------------------- /.drone/drone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/.drone/drone.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/bind.html -------------------------------------------------------------------------------- /bind_as_compose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/bind_as_compose.cpp -------------------------------------------------------------------------------- /bind_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/bind_visitor.cpp -------------------------------------------------------------------------------- /doc/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/Jamfile.v2 -------------------------------------------------------------------------------- /doc/bind.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind.qbk -------------------------------------------------------------------------------- /doc/bind/acknowledgements.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind/acknowledgements.qbk -------------------------------------------------------------------------------- /doc/bind/examples.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind/examples.qbk -------------------------------------------------------------------------------- /doc/bind/faq.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind/faq.qbk -------------------------------------------------------------------------------- /doc/bind/implementation.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind/implementation.qbk -------------------------------------------------------------------------------- /doc/bind/interface.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind/interface.qbk -------------------------------------------------------------------------------- /doc/bind/limitations.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind/limitations.qbk -------------------------------------------------------------------------------- /doc/bind/purpose.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind/purpose.qbk -------------------------------------------------------------------------------- /doc/bind/troubleshooting.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/bind/troubleshooting.qbk -------------------------------------------------------------------------------- /doc/html/bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/html/bind.html -------------------------------------------------------------------------------- /doc/html/mem_fn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/html/mem_fn.html -------------------------------------------------------------------------------- /doc/mem_fn.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/mem_fn.qbk -------------------------------------------------------------------------------- /doc/mem_fn/acknowledgements.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/mem_fn/acknowledgements.qbk -------------------------------------------------------------------------------- /doc/mem_fn/faq.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/mem_fn/faq.qbk -------------------------------------------------------------------------------- /doc/mem_fn/implementation.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/mem_fn/implementation.qbk -------------------------------------------------------------------------------- /doc/mem_fn/interface.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/mem_fn/interface.qbk -------------------------------------------------------------------------------- /doc/mem_fn/purpose.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/doc/mem_fn/purpose.qbk -------------------------------------------------------------------------------- /include/boost/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind.hpp -------------------------------------------------------------------------------- /include/boost/bind/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/apply.hpp -------------------------------------------------------------------------------- /include/boost/bind/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/arg.hpp -------------------------------------------------------------------------------- /include/boost/bind/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/bind.hpp -------------------------------------------------------------------------------- /include/boost/bind/detail/bind_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/detail/bind_cc.hpp -------------------------------------------------------------------------------- /include/boost/bind/detail/bind_mf2_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/detail/bind_mf2_cc.hpp -------------------------------------------------------------------------------- /include/boost/bind/detail/bind_mf_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/detail/bind_mf_cc.hpp -------------------------------------------------------------------------------- /include/boost/bind/detail/integer_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/detail/integer_sequence.hpp -------------------------------------------------------------------------------- /include/boost/bind/detail/result_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/detail/result_traits.hpp -------------------------------------------------------------------------------- /include/boost/bind/detail/tuple_for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/detail/tuple_for_each.hpp -------------------------------------------------------------------------------- /include/boost/bind/make_adaptable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/make_adaptable.hpp -------------------------------------------------------------------------------- /include/boost/bind/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/mem_fn.hpp -------------------------------------------------------------------------------- /include/boost/bind/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/placeholders.hpp -------------------------------------------------------------------------------- /include/boost/bind/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/protect.hpp -------------------------------------------------------------------------------- /include/boost/bind/std_placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/bind/std_placeholders.hpp -------------------------------------------------------------------------------- /include/boost/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/is_placeholder.hpp -------------------------------------------------------------------------------- /include/boost/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/include/boost/mem_fn.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/index.html -------------------------------------------------------------------------------- /mem_fn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/mem_fn.html -------------------------------------------------------------------------------- /meta/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/meta/libraries.json -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/Jamfile.v2 -------------------------------------------------------------------------------- /test/apply_rv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/apply_rv_test.cpp -------------------------------------------------------------------------------- /test/apply_rv_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/apply_rv_test2.cpp -------------------------------------------------------------------------------- /test/apply_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/apply_test.cpp -------------------------------------------------------------------------------- /test/apply_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/apply_test2.cpp -------------------------------------------------------------------------------- /test/arg_copy_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/arg_copy_fail.cpp -------------------------------------------------------------------------------- /test/arg_copy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/arg_copy_test.cpp -------------------------------------------------------------------------------- /test/bind_and_or_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_and_or_test.cpp -------------------------------------------------------------------------------- /test/bind_cdecl_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_cdecl_mf_test.cpp -------------------------------------------------------------------------------- /test/bind_const_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_const_test.cpp -------------------------------------------------------------------------------- /test/bind_cpp20_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_cpp20_test.cpp -------------------------------------------------------------------------------- /test/bind_cv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_cv_test.cpp -------------------------------------------------------------------------------- /test/bind_dm2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_dm2_test.cpp -------------------------------------------------------------------------------- /test/bind_dm3_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_dm3_test.cpp -------------------------------------------------------------------------------- /test/bind_dm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_dm_test.cpp -------------------------------------------------------------------------------- /test/bind_eq2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_eq2_test.cpp -------------------------------------------------------------------------------- /test/bind_eq3_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_eq3_test.cpp -------------------------------------------------------------------------------- /test/bind_eq_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_eq_test.cpp -------------------------------------------------------------------------------- /test/bind_fastcall_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_fastcall_mf_test.cpp -------------------------------------------------------------------------------- /test/bind_fastcall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_fastcall_test.cpp -------------------------------------------------------------------------------- /test/bind_fn2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_fn2_test.cpp -------------------------------------------------------------------------------- /test/bind_fnobj2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_fnobj2_test.cpp -------------------------------------------------------------------------------- /test/bind_function2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_function2_test.cpp -------------------------------------------------------------------------------- /test/bind_function_ap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_function_ap_test.cpp -------------------------------------------------------------------------------- /test/bind_function_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_function_test.cpp -------------------------------------------------------------------------------- /test/bind_fwd2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_fwd2_test.cpp -------------------------------------------------------------------------------- /test/bind_fwd_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_fwd_test.cpp -------------------------------------------------------------------------------- /test/bind_lookup_problem_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_lookup_problem_test.cpp -------------------------------------------------------------------------------- /test/bind_mf2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_mf2_test.cpp -------------------------------------------------------------------------------- /test/bind_nested_rv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_nested_rv_test.cpp -------------------------------------------------------------------------------- /test/bind_no_placeholders_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_no_placeholders_test.cpp -------------------------------------------------------------------------------- /test/bind_noexcept_mf2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_noexcept_mf2_test.cpp -------------------------------------------------------------------------------- /test/bind_noexcept_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_noexcept_mf_test.cpp -------------------------------------------------------------------------------- /test/bind_noexcept_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_noexcept_test.cpp -------------------------------------------------------------------------------- /test/bind_not_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_not_test.cpp -------------------------------------------------------------------------------- /test/bind_over_mf2_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_over_mf2_test.cpp -------------------------------------------------------------------------------- /test/bind_over_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_over_mf_test.cpp -------------------------------------------------------------------------------- /test/bind_over_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_over_test.cpp -------------------------------------------------------------------------------- /test/bind_placeholder_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_placeholder_test.cpp -------------------------------------------------------------------------------- /test/bind_ref_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_ref_test.cpp -------------------------------------------------------------------------------- /test/bind_rel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_rel_test.cpp -------------------------------------------------------------------------------- /test/bind_rv_sp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_rv_sp_test.cpp -------------------------------------------------------------------------------- /test/bind_rvalue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_rvalue_test.cpp -------------------------------------------------------------------------------- /test/bind_stateful_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_stateful_test.cpp -------------------------------------------------------------------------------- /test/bind_stdcall_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_stdcall_mf_test.cpp -------------------------------------------------------------------------------- /test/bind_stdcall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_stdcall_test.cpp -------------------------------------------------------------------------------- /test/bind_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_test.cpp -------------------------------------------------------------------------------- /test/bind_type_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_type_test.cpp -------------------------------------------------------------------------------- /test/bind_unary_addr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_unary_addr.cpp -------------------------------------------------------------------------------- /test/bind_unique_ptr_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_unique_ptr_test.cpp -------------------------------------------------------------------------------- /test/bind_visit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_visit_test.cpp -------------------------------------------------------------------------------- /test/bind_void_dm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_void_dm_test.cpp -------------------------------------------------------------------------------- /test/bind_void_mf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_void_mf_test.cpp -------------------------------------------------------------------------------- /test/bind_void_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/bind_void_test.cpp -------------------------------------------------------------------------------- /test/cmake_install_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/cmake_install_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmake_subdir_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/cmake_subdir_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/global_placeholders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/global_placeholders.cpp -------------------------------------------------------------------------------- /test/mem_fn_cdecl_ref_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_cdecl_ref_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_cdecl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_cdecl_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_derived_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_derived_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_dm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_dm_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_eq_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_eq_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_fastcall_ref_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_fastcall_ref_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_fastcall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_fastcall_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_noexcept_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_noexcept_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_ref_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_ref_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_rv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_rv_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_stdcall_ref_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_stdcall_ref_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_stdcall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_stdcall_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_unary_addr_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_unary_addr_test.cpp -------------------------------------------------------------------------------- /test/mem_fn_void_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/mem_fn_void_test.cpp -------------------------------------------------------------------------------- /test/placeholder_const_ref_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/placeholder_const_ref_test.cpp -------------------------------------------------------------------------------- /test/placeholder_std_bind_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/placeholder_std_bind_test.cpp -------------------------------------------------------------------------------- /test/protect_cpp20_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/protect_cpp20_test.cpp -------------------------------------------------------------------------------- /test/protect_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/protect_test.cpp -------------------------------------------------------------------------------- /test/protect_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/protect_test2.cpp -------------------------------------------------------------------------------- /test/quick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/quick.cpp -------------------------------------------------------------------------------- /test/ref_fn_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/ref_fn_test.cpp -------------------------------------------------------------------------------- /test/std_placeholders_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/bind/HEAD/test/std_placeholders_test.cpp --------------------------------------------------------------------------------