Searched defs:forward_iterator (Results 1 – 3 of 3) sorted by relevance
115 template <class U> friend class forward_iterator; variable125 TEST_CONSTEXPR_CXX14 forward_iterator() : it_() {} in forward_iterator() function126 explicit TEST_CONSTEXPR_CXX14 forward_iterator(It it) : it_(it) {} in forward_iterator() function128 TEST_CONSTEXPR_CXX14 forward_iterator(const forward_iterator<U>& u) :it_(u.it_) {} in forward_iterator() function
117 template <class U> friend class forward_iterator; variable125 TEST_CONSTEXPR forward_iterator() : it_() {} in forward_iterator() function126 TEST_CONSTEXPR explicit forward_iterator(It it) : it_(it) {} in forward_iterator() function129 TEST_CONSTEXPR forward_iterator(const forward_iterator<U>& u) : it_(u.it_) {} in forward_iterator() function132 …TEST_CONSTEXPR_CXX14 forward_iterator(forward_iterator<U>&& other) : it_(other.it_) { other.it_ = … in forward_iterator() function
155 concept forward_iterator = variable