Lines Matching refs:is_constructible
50 boost::is_constructible< in is_lvalue_constructible()
60 boost::is_constructible<To, Args...>::value == has_constructor && in is_constructible_impl()
68 bool is_constructible(bool has_constructor) in is_constructible() function
81 BOOST_TEST((is_constructible< FUSION_SEQUENCE<> >(true))); in test_constructible()
83 BOOST_TEST((is_constructible< FUSION_SEQUENCE<int> >(true))); in test_constructible()
84 BOOST_TEST((is_constructible<FUSION_SEQUENCE<int>, int>(true))); in test_constructible()
86 BOOST_TEST((is_constructible<FUSION_SEQUENCE<convertible>, int>(true))); in test_constructible()
88 is_constructible<FUSION_SEQUENCE<convertible>, convertible>(true) in test_constructible()
94 is_constructible<FUSION_SEQUENCE<int, int>, int, int>(true) in test_constructible()
98 is_constructible<FUSION_SEQUENCE<convertible, int>, int, int>(true) in test_constructible()
101 is_constructible< in test_constructible()
107 is_constructible<FUSION_SEQUENCE<int, convertible>, int, int>(true) in test_constructible()
110 is_constructible< in test_constructible()
116 is_constructible< in test_constructible()
121 is_constructible< in test_constructible()
126 is_constructible< in test_constructible()
131 is_constructible< in test_constructible()