Searched defs:forward_iterator (Results 1 – 3 of 3) sorted by relevance
106 template <class U> friend class forward_iterator; variable114 TEST_CONSTEXPR forward_iterator() : it_() {} in forward_iterator() function115 TEST_CONSTEXPR explicit forward_iterator(It it) : it_(it) {} in forward_iterator() function118 TEST_CONSTEXPR forward_iterator(const forward_iterator<U>& u) : it_(u.it_) {} in forward_iterator() function121 …TEST_CONSTEXPR_CXX14 forward_iterator(forward_iterator<U>&& other) : it_(other.it_) { other.it_ = … in forward_iterator() function
135 concept forward_iterator = variable
323 typedef ForwardIterator<iterator, std::forward_iterator_tag> forward_iterator; typedef