Lines Matching refs:is_sequence
28 MPL_ASSERT_NOT(( is_sequence< std_vector<int> > )); in MPL_TEST_CASE()
29 MPL_ASSERT_NOT(( is_sequence< int_<0> > )); in MPL_TEST_CASE()
30 MPL_ASSERT_NOT(( is_sequence< int > )); in MPL_TEST_CASE()
31 MPL_ASSERT_NOT(( is_sequence< int& > )); in MPL_TEST_CASE()
32 MPL_ASSERT_NOT(( is_sequence< UDT > )); in MPL_TEST_CASE()
33 MPL_ASSERT_NOT(( is_sequence< UDT* > )); in MPL_TEST_CASE()
34 MPL_ASSERT(( is_sequence< range_c<int,0,0> > )); in MPL_TEST_CASE()
35 MPL_ASSERT(( is_sequence< list<> > )); in MPL_TEST_CASE()
36 MPL_ASSERT(( is_sequence< list<int> > )); in MPL_TEST_CASE()
37 MPL_ASSERT(( is_sequence< vector<> > )); in MPL_TEST_CASE()
38 MPL_ASSERT(( is_sequence< vector<int> > )); in MPL_TEST_CASE()