Searched defs:forward_iterator (Results 1 – 6 of 6) 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
74 class forward_iterator { class84 BOOST_CXX14_CONSTEXPR forward_iterator() : it_() {} in forward_iterator() function in forward_iterator85 BOOST_CXX14_CONSTEXPR explicit forward_iterator(It it) : it_(it) {} in forward_iterator() function in forward_iterator87 BOOST_CXX14_CONSTEXPR forward_iterator(const forward_iterator<U>& u) :it_(u.it_) {} in forward_iterator() function in forward_iterator
128 template <class U> friend class forward_iterator; variable136 TEST_CONSTEXPR forward_iterator() : it_() {} in forward_iterator() function137 TEST_CONSTEXPR explicit forward_iterator(It it) : it_(it) {} in forward_iterator() function140 …TEST_CONSTEXPR forward_iterator(const forward_iterator<U>& u) : it_(u.it_), tracker_(u.tracker_) {} in forward_iterator() function143 TEST_CONSTEXPR_CXX14 forward_iterator(forward_iterator<U>&& other) in forward_iterator() function
140 concept forward_iterator = variable