命名空间
变体
操作

std::ranges::subrange<I,S,K>::prev

来自 cppreference.com
< cpp‎ | ranges‎ | subrange
 
 
范围库
范围适配器
 
 
constexpr subrange prev( std::iter_difference_t<I> n = 1 ) const
    requires std::bidirectional_iterator<I>;
(自 C++20 起)

返回 *this 的副本,其 begin_ 已递减(或如果 n 为负则递增)。实际的递减(或递增)操作由 advance() 执行。等效于

auto tmp = *this;
tmp.advance(-n);
return tmp;
.

内容

[编辑] 参数

n - 迭代器递减次数

[编辑] 返回值

如上所述。

[编辑] 说明

此函数与 advance() 之间的区别在于后者就地执行递减(或递增)。

[编辑] 示例

#include <iterator>
#include <list>
#include <print>
#include <ranges>
 
int main()
{
    std::list list{1, 2, 3, 4, 5};
    std::ranges::subrange sub{std::next(list.begin(), 2), std::prev(list.end(), 2)};
    std::println("{} {} {}", sub, sub.prev(), sub.prev(2));
}

输出

[3] [2, 3] [1, 2, 3]

[编辑] 另请参阅

获取 subrange 的副本,其迭代器已向前移动指定距离
(公共成员函数) [编辑]
将迭代器向前移动指定距离
(公共成员函数) [编辑]
(C++11)
递减迭代器
(函数模板) [编辑]
将迭代器递减指定距离或到边界
(niebloid)[编辑]