Searched defs:forward_iterator (Results 1 – 13 of 13) sorted by relevance
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
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
464 macro_rules! forward_iterator { macro
462 macro_rules! forward_iterator { macro
140 concept forward_iterator = variable