Home
last modified time | relevance | path

Searched refs:mp_or (Results 1 – 25 of 113) sorted by relevance

12345

/dports/devel/boost-docs/boost_1_72_0/libs/mp11/test/
H A Dmp_or.cpp17 using boost::mp11::mp_or; in main()
23 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<>, mp_false>)); in main()
25 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_true>, mp_true>)); in main()
26 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_false>, mp_false>)); in main()
28 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_int<-7>>, mp_true>)); in main()
29 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_int<0>>, mp_false>)); in main()
31 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_size_t<7>>, mp_true>)); in main()
32 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_size_t<0>>, mp_false>)); in main()
34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_true, void>, mp_true>)); in main()
35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_false, mp_true>, mp_true>)); in main()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/mp11/test/
H A Dmp_or.cpp17 using boost::mp11::mp_or; in main()
23 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<>, mp_false>)); in main()
25 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_true>, mp_true>)); in main()
26 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_false>, mp_false>)); in main()
28 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_int<-7>>, mp_true>)); in main()
29 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_int<0>>, mp_false>)); in main()
31 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_size_t<7>>, mp_true>)); in main()
32 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_size_t<0>>, mp_false>)); in main()
34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_true, void>, mp_true>)); in main()
35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_false, mp_true>, mp_true>)); in main()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/mp11/test/
H A Dmp_or.cpp17 using boost::mp11::mp_or; in main()
23 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<>, mp_false>)); in main()
25 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_true>, mp_true>)); in main()
26 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_false>, mp_false>)); in main()
28 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_int<-7>>, mp_true>)); in main()
29 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_int<0>>, mp_false>)); in main()
31 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_size_t<7>>, mp_true>)); in main()
32 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_size_t<0>>, mp_false>)); in main()
34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_true, void>, mp_true>)); in main()
35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_false, mp_true>, mp_true>)); in main()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/mp11/test/
H A Dmp_or.cpp17 using boost::mp11::mp_or; in main()
23 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<>, mp_false>)); in main()
25 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_true>, mp_true>)); in main()
26 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_false>, mp_false>)); in main()
28 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_int<-7>>, mp_true>)); in main()
29 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_int<0>>, mp_false>)); in main()
31 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_size_t<7>>, mp_true>)); in main()
32 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_size_t<0>>, mp_false>)); in main()
34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_true, void>, mp_true>)); in main()
35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_or<mp_false, mp_true>, mp_true>)); in main()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/mp11/doc/mp11/
H A Dfunction.adoc61 ## mp_or<T...>
63 template<class... T> using mp_or = /*...*/;
65 `mp_or<T...>` applies `mp_to_bool` to the types in `T...`, in order. If the result of an applicatio…
66 returns `mp_true`. If all results are `mp_false`, returns `mp_false`. `mp_or<>` is `mp_false`.
68 .mp_or behavior
70 using R1 = mp_or<mp_true, mp_false>; // mp_true
72 using R2 = mp_or<mp_true, void>; // mp_true, void is not reached
74 using R3 = mp_or<mp_false, mp_false>; // mp_false
76 using R4 = mp_or<void, mp_true>; // compile-time error
84 `mp_or`, but does not perform short-circuit evaluation.
/dports/devel/boost-python-libs/boost_1_72_0/libs/mp11/doc/mp11/
H A Dfunction.adoc61 ## mp_or<T...>
63 template<class... T> using mp_or = /*...*/;
65 `mp_or<T...>` applies `mp_to_bool` to the types in `T...`, in order. If the result of an applicatio…
66 returns `mp_true`. If all results are `mp_false`, returns `mp_false`. `mp_or<>` is `mp_false`.
68 .mp_or behavior
70 using R1 = mp_or<mp_true, mp_false>; // mp_true
72 using R2 = mp_or<mp_true, void>; // mp_true, void is not reached
74 using R3 = mp_or<mp_false, mp_false>; // mp_false
76 using R4 = mp_or<void, mp_true>; // compile-time error
84 `mp_or`, but does not perform short-circuit evaluation.
/dports/devel/boost-libs/boost_1_72_0/libs/mp11/doc/mp11/
H A Dfunction.adoc61 ## mp_or<T...>
63 template<class... T> using mp_or = /*...*/;
65 `mp_or<T...>` applies `mp_to_bool` to the types in `T...`, in order. If the result of an applicatio…
66 returns `mp_true`. If all results are `mp_false`, returns `mp_false`. `mp_or<>` is `mp_false`.
68 .mp_or behavior
70 using R1 = mp_or<mp_true, mp_false>; // mp_true
72 using R2 = mp_or<mp_true, void>; // mp_true, void is not reached
74 using R3 = mp_or<mp_false, mp_false>; // mp_false
76 using R4 = mp_or<void, mp_true>; // compile-time error
84 `mp_or`, but does not perform short-circuit evaluation.
/dports/devel/hyperscan/boost_1_75_0/libs/mp11/doc/mp11/
H A Dfunction.adoc61 ## mp_or<T...>
63 template<class... T> using mp_or = /*...*/;
65 `mp_or<T...>` applies `mp_to_bool` to the types in `T...`, in order. If the result of an applicatio…
66 returns `mp_true`. If all results are `mp_false`, returns `mp_false`. `mp_or<>` is `mp_false`.
68 .mp_or behavior
70 using R1 = mp_or<mp_true, mp_false>; // mp_true
72 using R2 = mp_or<mp_true, void>; // mp_true, void is not reached
74 using R3 = mp_or<mp_false, mp_false>; // mp_false
76 using R4 = mp_or<void, mp_true>; // compile-time error
84 `mp_or`, but does not perform short-circuit evaluation.
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/mp11/
H A Dfunction.hpp105 template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >;
122 using type = mp_eval_if< T1, T1, mp_or, T... >;
/dports/devel/boost-docs/boost_1_72_0/boost/gil/io/
H A Ddevice.hpp547 mp11::mp_or
585 mp11::mp_or
618 mp11::mp_or
653 mp11::mp_or
/dports/devel/hyperscan/boost_1_75_0/boost/gil/io/
H A Ddevice.hpp547 mp11::mp_or
585 mp11::mp_or
618 mp11::mp_or
653 mp11::mp_or
/dports/devel/boost-python-libs/boost_1_72_0/boost/gil/io/
H A Ddevice.hpp547 mp11::mp_or
585 mp11::mp_or
618 mp11::mp_or
653 mp11::mp_or
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/gil/io/
H A Ddevice.hpp547 mp11::mp_or
585 mp11::mp_or
618 mp11::mp_or
653 mp11::mp_or
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/gil/io/
H A Ddevice.hpp547 mp11::mp_or
585 mp11::mp_or
618 mp11::mp_or
653 mp11::mp_or
/dports/devel/boost-libs/boost_1_72_0/boost/gil/io/
H A Ddevice.hpp547 mp11::mp_or
585 mp11::mp_or
618 mp11::mp_or
653 mp11::mp_or
/dports/devel/boost-docs/boost_1_72_0/boost/mp11/
H A Dfunction.hpp106 template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >; typedef
123 using type = mp_eval_if< T1, T1, mp_or, T... >;
/dports/devel/boost-libs/boost_1_72_0/boost/mp11/
H A Dfunction.hpp106 template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >; typedef
123 using type = mp_eval_if< T1, T1, mp_or, T... >;
/dports/devel/boost-python-libs/boost_1_72_0/boost/mp11/
H A Dfunction.hpp106 template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >; typedef
123 using type = mp_eval_if< T1, T1, mp_or, T... >;
/dports/devel/R-cran-BH/BH/inst/include/boost/mp11/
H A Dfunction.hpp102 template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >; typedef
119 using type = mp_eval_if< T1, T1, mp_or, T... >;
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/mp11/
H A Dfunction.hpp106 template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >; typedef
123 using type = mp_eval_if< T1, T1, mp_or, T... >;
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/mp11/
H A Dfunction.hpp106 template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >;
123 using type = mp_eval_if< T1, T1, mp_or, T... >;
/dports/devel/hyperscan/boost_1_75_0/boost/mp11/
H A Dfunction.hpp106 template<class... T> using mp_or = mp_to_bool< typename detail::mp_or_impl<T...>::type >; typedef
123 using type = mp_eval_if< T1, T1, mp_or, T... >;
/dports/lang/tcl85/tcl8.5.19/libtommath/
H A Dbn_mp_or.c19 int mp_or (mp_int * a, mp_int * b, mp_int * c) in mp_or() function
/dports/net/samba412/samba-4.12.15/source4/heimdal/lib/hcrypto/libtommath/
H A Dbn_mp_or.c19 int mp_or (mp_int * a, mp_int * b, mp_int * c) in mp_or() function
/dports/games/wargus/wargus-3.2.0/StormLib/src/libtommath/
H A Dbn_mp_or.c19 int mp_or (mp_int * a, mp_int * b, mp_int * c) in mp_or() function

12345