Searched refs:testMutable (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/libcxx/test/std/iterators/iterator.primitives/iterator.traits/ |
| H A D | cxx20_iterator_traits.compile.pass.cpp | 83 constexpr bool testMutable() { in testMutable() function 93 static_assert(testMutable<std::array<int, 10>::iterator, std::random_access_iterator_tag, int>()); 95 static_assert(testMutable<std::string::iterator, std::random_access_iterator_tag, char>()); 99 static_assert(testMutable<std::vector<int>::iterator, std::random_access_iterator_tag, int>()); 102 static_assert(testMutable<std::deque<int>::iterator, std::random_access_iterator_tag, int>()); 104 static_assert(testMutable<std::forward_list<int>::iterator, std::forward_iterator_tag, int>()); 106 static_assert(testMutable<std::list<int>::iterator, std::bidirectional_iterator_tag, int>()); 109 static_assert(testMutable<std::map<int, int>::iterator, std::bidirectional_iterator_tag, std::pair<… 111 static_assert(testMutable<std::multimap<int, int>::iterator, std::bidirectional_iterator_tag, std::… 125 static_assert(testMutable<std::unordered_map<int, int>::iterator, unordered_iterator_category, std:… [all …]
|