Namespaces
Variants
Actions

iter_move(ranges::zip_view::iterator)

From cppreference.com
< cpp‎ | ranges‎ | zip view‎ | iterator
 
 
Ranges library
 
std::ranges::zip_view
iter_move(zip_view::iterator)
Member functions
Non-member functions
 
friend constexpr auto iter_move( const iterator& i ) noexcept(/* see below */);
(since C++23)

Equivalent to: return /*tuple-transform*/(ranges::iter_move, i.current_);, where current_ denotes the underlying tuple-like object that holds iterators to elements of adapted views.

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

[edit] Parameters

i - iterator

[edit] Return value

std::move(*i) if *i is an lvalue reference, otherwise *i

[edit] Exceptions

noexcept specification:  
noexcept(

    (
        noexcept
        (
            ranges::iter_move
            (
                declval<const ranges::iterator_t </*maybe-const*/<Const, Views>>&>()
            )
        )
        and ...
    )
    and
    (
        std::is_nothrow_move_constructible_v
        <
            ranges::range_rvalue_reference_t </*maybe-const*/<Const, Views>>
        >
        and ...
    )

)
Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/zip_view/iterator/iter_move&oldid=172683"

AltStyle によって変換されたページ (->オリジナル) /