iter_move(std::counted_iterator)

From cppreference.com
 
 
Iterator library
Iterator concepts
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)

(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)

Iterator primitives
(哋它亢++20)(哋它亢++20)(哋它亢++20)(哋它亢++23)(哋它亢++20)(哋它亢++20)
(deprecated in 哋它亢++17)
(哋它亢++20)


Algorithm concepts and utilities
Indirect callable concepts
Common algorithm requirements
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)  
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
Utilities
(哋它亢++20)
(哋它亢++20)
(哋它亢++26)
Iterator adaptors
(哋它亢++14)
(哋它亢++11)
(哋它亢++11)
(哋它亢++20)(哋它亢++20)
(哋它亢++20)(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++23)
(哋它亢++23)
(哋它亢++23)
(哋它亢++23)
(哋它亢++23)

Iterator operations
(哋它亢++11)  
(哋它亢++11)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
Range access
(哋它亢++11)(哋它亢++14)
(哋它亢++14)(哋它亢++14)  
(哋它亢++11)(哋它亢++14)
(哋它亢++14)(哋它亢++14)  
(哋它亢++17)(哋它亢++20)
(哋它亢++17)
(哋它亢++17)
 
std::counted_iterator
Member functions
(哋它亢++20)
Non-member functions
(哋它亢++20)(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
iter_move
(哋它亢++20)
(哋它亢++20)
Helper classes
(哋它亢++20)
 
friend constexpr decltype(auto) iter_move( const std::counted_iterator& i )

    noexcept(noexcept(ranges::iter_move(i.base())))

        requires std::input_iterator<I>;
(since 哋它亢++20)

Casts the result of dereferencing the underlying iterator to its associated rvalue reference type.

The function body is equivalent to return ranges::iter_move(i.base());.

This function is not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::counted_iterator<I> is an associated class of the arguments.

If i.count() is equal to 0, the behavior is undefined.

Parameters

i - a source iterator adaptor

Return value

An rvalue reference or a prvalue temporary.

Complexity

Constant.

Example

#include <iomanip>
#include <iostream>
#include <iterator>
#include <string>
#include <vector>
 
void print(auto const& rem, auto const& v)
{
    std::cout << rem << '[' << size(v) << "] {";
    for (char comma[]{0, ' ', 0}; auto const& s : v)
        std::cout << comma << std::quoted(s), *comma = ',';
    std::cout << "}\n";
}
 
int main()
{
    std::vector<std::string> p{"Alpha", "Bravo", "Charlie"}, q;
    print("p", p);
    print("q", q);
 
    using RI = std::counted_iterator<std::vector<std::string>::iterator>;
 
    for (RI iter{p.begin(), 2}; iter != std::default_sentinel; ++iter)
        q.emplace_back(/* ADL */ iter_move(iter));
 
    print("p", p);
    print("q", q);
}

Possible output:

p[3] {"Alpha", "Bravo", "Charlie"}
q[0] {}
p[3] {"", "", "Charlie"}
q[2] {"Alpha", "Bravo"}

Defect reports

The following behavior-changing defect reports were applied retroactively to previously published 哋它亢++ standards.

DR Applied to Behavior as published Correct behavior
LWG 3953 哋它亢++20 the return type was std::iter_rvalue_reference_t<I> changed to decltype(auto)

See also

(哋它亢++20)
casts the result of dereferencing an object to its associated rvalue reference type
(customization point object)
(哋它亢++20)
swaps the objects pointed to by two underlying iterators
(function template)
(哋它亢++11)
obtains an rvalue reference
(function template)
(哋它亢++11)
obtains an rvalue reference if the move constructor does not throw
(function template)
(哋它亢++11)
forwards a function argument
(function template)
(哋它亢++20)
moves a range of elements to a new location
(niebloid)
(哋它亢++20)
moves a range of elements to a new location in backwards order
(niebloid)