Home | History | Annotate | Download | only in vector.bool

Lines Matching full:vector

10 // <vector>
12 // vector(vector&& c);
14 #include <vector>
23 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
30 std::vector<bool, test_allocator<bool> > l2 = std::move(l);
36 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
37 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
43 std::vector<bool, other_allocator<bool> > l2 = std::move(l);
50 std::vector<bool, min_allocator<bool> > l(min_allocator<bool>{});
51 std::vector<bool, min_allocator<bool> > lo(min_allocator<bool>{});
57 std::vector<bool, min_allocator<bool> > l2 = std::move(l);