Home
last modified time | relevance | path

Searched refs:make_void (Results 1 – 25 of 423) sorted by relevance

12345678910>>...17

/dports/devel/boost-docs/boost_1_72_0/libs/type_traits/doc/
H A Dmake_void.qbk10 [section:make_void make_void]
13 struct make_void
19 using void_t = typename make_void<Ts...>::type;
23 __header ` #include <boost/type_traits/make_void.hpp>` or ` #include <boost/type_traits.hpp>`
29 [[`make_void<int>::type`][`void`]]
31 [[`make_void<int&>::type`] [`void`]]
33 [[`make_void<int(*)(int)>::type`] [`void`]]
35 [[`make_void<int[]>::type`] [`void`]]
37 [[`make_void<int[1]>::type`] [`void`]]
39 [[`make_void<>::type`] [`void`]]
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/type_traits/doc/
H A Dmake_void.qbk10 [section:make_void make_void]
13 struct make_void
19 using void_t = typename make_void<Ts...>::type;
23 __header ` #include <boost/type_traits/make_void.hpp>` or ` #include <boost/type_traits.hpp>`
29 [[`make_void<int>::type`][`void`]]
31 [[`make_void<int&>::type`] [`void`]]
33 [[`make_void<int(*)(int)>::type`] [`void`]]
35 [[`make_void<int[]>::type`] [`void`]]
37 [[`make_void<int[1]>::type`] [`void`]]
39 [[`make_void<>::type`] [`void`]]
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/type_traits/doc/
H A Dmake_void.qbk10 [section:make_void make_void]
13 struct make_void
19 using void_t = typename make_void<Ts...>::type;
23 __header ` #include <boost/type_traits/make_void.hpp>` or ` #include <boost/type_traits.hpp>`
29 [[`make_void<int>::type`][`void`]]
31 [[`make_void<int&>::type`] [`void`]]
33 [[`make_void<int(*)(int)>::type`] [`void`]]
35 [[`make_void<int[]>::type`] [`void`]]
37 [[`make_void<int[1]>::type`] [`void`]]
39 [[`make_void<>::type`] [`void`]]
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/type_traits/doc/
H A Dmake_void.qbk10 [section:make_void make_void]
13 struct make_void
19 using void_t = typename make_void<Ts...>::type;
23 __header ` #include <boost/type_traits/make_void.hpp>` or ` #include <boost/type_traits.hpp>`
29 [[`make_void<int>::type`][`void`]]
31 [[`make_void<int&>::type`] [`void`]]
33 [[`make_void<int(*)(int)>::type`] [`void`]]
35 [[`make_void<int[]>::type`] [`void`]]
37 [[`make_void<int[1]>::type`] [`void`]]
39 [[`make_void<>::type`] [`void`]]
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/type_traits/test/
H A Dmake_void_test.cpp18 TT_TEST_BEGIN(make_void)
20 BOOST_CHECK_TYPE(::tt::make_void<int>::type, void);
21 BOOST_CHECK_TYPE(::tt::make_void<const volatile int>::type, void);
22 BOOST_CHECK_TYPE(::tt::make_void<int&>::type, void);
23 BOOST_CHECK_TYPE(::tt::make_void<void>::type, void);
24 BOOST_CHECK_TYPE(::tt::make_void<int(*)(int)>::type, void);
25 BOOST_CHECK_TYPE(::tt::make_void<int[]>::type, void);
26 BOOST_CHECK_TYPE(::tt::make_void<int[1]>::type, void);
28 BOOST_CHECK_TYPE(::tt::make_void<>::type, void);
29 BOOST_CHECK_TYPE3(::tt::make_void<int, int>::type, void);
/dports/devel/boost-libs/boost_1_72_0/libs/type_traits/test/
H A Dmake_void_test.cpp18 TT_TEST_BEGIN(make_void)
20 BOOST_CHECK_TYPE(::tt::make_void<int>::type, void);
21 BOOST_CHECK_TYPE(::tt::make_void<const volatile int>::type, void);
22 BOOST_CHECK_TYPE(::tt::make_void<int&>::type, void);
23 BOOST_CHECK_TYPE(::tt::make_void<void>::type, void);
24 BOOST_CHECK_TYPE(::tt::make_void<int(*)(int)>::type, void);
25 BOOST_CHECK_TYPE(::tt::make_void<int[]>::type, void);
26 BOOST_CHECK_TYPE(::tt::make_void<int[1]>::type, void);
28 BOOST_CHECK_TYPE(::tt::make_void<>::type, void);
29 BOOST_CHECK_TYPE3(::tt::make_void<int, int>::type, void);
/dports/devel/boost-docs/boost_1_72_0/libs/type_traits/test/
H A Dmake_void_test.cpp18 TT_TEST_BEGIN(make_void)
20 BOOST_CHECK_TYPE(::tt::make_void<int>::type, void);
21 BOOST_CHECK_TYPE(::tt::make_void<const volatile int>::type, void);
22 BOOST_CHECK_TYPE(::tt::make_void<int&>::type, void);
23 BOOST_CHECK_TYPE(::tt::make_void<void>::type, void);
24 BOOST_CHECK_TYPE(::tt::make_void<int(*)(int)>::type, void);
25 BOOST_CHECK_TYPE(::tt::make_void<int[]>::type, void);
26 BOOST_CHECK_TYPE(::tt::make_void<int[1]>::type, void);
28 BOOST_CHECK_TYPE(::tt::make_void<>::type, void);
29 BOOST_CHECK_TYPE3(::tt::make_void<int, int>::type, void);
/dports/devel/hyperscan/boost_1_75_0/libs/type_traits/test/
H A Dmake_void_test.cpp18 TT_TEST_BEGIN(make_void)
20 BOOST_CHECK_TYPE(::tt::make_void<int>::type, void);
21 BOOST_CHECK_TYPE(::tt::make_void<const volatile int>::type, void);
22 BOOST_CHECK_TYPE(::tt::make_void<int&>::type, void);
23 BOOST_CHECK_TYPE(::tt::make_void<void>::type, void);
24 BOOST_CHECK_TYPE(::tt::make_void<int(*)(int)>::type, void);
25 BOOST_CHECK_TYPE(::tt::make_void<int[]>::type, void);
26 BOOST_CHECK_TYPE(::tt::make_void<int[1]>::type, void);
28 BOOST_CHECK_TYPE(::tt::make_void<>::type, void);
29 BOOST_CHECK_TYPE3(::tt::make_void<int, int>::type, void);
/dports/devel/boost-docs/boost_1_72_0/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/devel/R-cran-BH/BH/inst/include/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/type_traits/
H A Dmake_void.hpp19 struct make_void {
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/boost-1.70.0/include/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/emulators/citra/citra-ac98458e0/externals/boost/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/emulators/citra-qt5/citra-ac98458e0/externals/boost/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/devel/boost-libs/boost_1_72_0/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/devel/boost-python-libs/boost_1_72_0/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/devel/py-pythran/pythran-0.11.0/pythran/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/devel/py-pythran/pythran-0.11.0/third_party/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/devel/hyperscan/boost_1_75_0/boost/type_traits/
H A Dmake_void.hpp19 struct make_void { struct
25 using void_t = typename make_void<Ts...>::type;
35 struct make_void {
45 using void_t = typename make_void<A, B, C, D, E>::type;
/dports/devel/estd/estd-0.4.0/test/result/
H A Dmap.cpp88 auto make_void = [] (auto ...) {}; in __anon285464700302() variable
89 static_assert_same<decltype(valid.map(make_void)), estd::result<void, Error>>();
90 CHECK(valid.map(make_void));
124 auto make_void = [] (auto ...) {}; in __anon285464700602() variable
126 static_assert_same<decltype(valid.map(make_void)), estd::result<void, Error>>();
129 CHECK(valid.map(make_void));
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/lib/nlohmann-json/include/nlohmann/detail/meta/
H A Dvoid_t.hpp7 template<typename ...Ts> struct make_void struct
11 template<typename ...Ts> using void_t = typename make_void<Ts...>::type;
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/thirdparty/nlohmann/detail/meta/
H A Dvoid_t.hpp7 template <typename ...Ts> struct make_void struct
11 template <typename ...Ts> using void_t = typename make_void<Ts...>::type;
/dports/cad/horizon-eda/horizon-2.1.0/3rd_party/nlohmann/detail/meta/
H A Dvoid_t.hpp7 template<typename ...Ts> struct make_void struct
11 template<typename ...Ts> using void_t = typename make_void<Ts...>::type;

12345678910>>...17