Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/support/
H A Dtest_iterators.h106 template <class U> friend class forward_iterator; variable
114 TEST_CONSTEXPR forward_iterator() : it_() {} in forward_iterator() function
115 TEST_CONSTEXPR explicit forward_iterator(It it) : it_(it) {} in forward_iterator() function
118 TEST_CONSTEXPR forward_iterator(const forward_iterator<U>& u) : it_(u.it_) {} in forward_iterator() function
121 …TEST_CONSTEXPR_CXX14 forward_iterator(forward_iterator<U>&& other) : it_(other.it_) { other.it_ = … in forward_iterator() function
/llvm-project-15.0.7/libcxx/include/__iterator/
H A Dconcepts.h135 concept forward_iterator = variable
/llvm-project-15.0.7/pstl/test/support/
H A Dutils.h323 typedef ForwardIterator<iterator, std::forward_iterator_tag> forward_iterator; typedef