Home
last modified time | relevance | path

Searched defs:forward_iterator (Results 1 – 3 of 3) sorted by relevance

/llvm-project/libcxx/test/support/
H A Dtest_iterators.h117 template <class U> friend class forward_iterator; global() variable
125 TEST_CONSTEXPR forward_iterator() : it_() {} forward_iterator() function
126 TEST_CONSTEXPR explicit forward_iterator(It it) : it_(it) {} forward_iterator() function
129 TEST_CONSTEXPR forward_iterator(const forward_iterator<U>& u) : it_(u.it_) {} forward_iterator() function
132 TEST_CONSTEXPR_CXX14 forward_iterator(forward_iterator<U>&& other) : it_(other.it_) { other.it_ = U(); } forward_iterator() function
[all...]
/llvm-project/libcxx/include/__iterator/
H A Dconcepts.h140 concept forward_iterator = global() variable
/llvm-project/pstl/test/support/
H A Dutils.h323 typedef ForwardIterator<iterator, std::forward_iterator_tag> forward_iterator; typedef