std::ranges::ssize

来自cppreference.com
< cpp‎ | ranges
 
 
 
定义于头文件 <ranges>
inline namespace /*unspecified*/ {

    inline constexpr /*unspecified*/ ssize = /*unspecified*/;

}
(C++20 起)
(定制点对象)
调用签名
template< class T >

    requires /* see below */

constexpr /*signed-integral-like*/ ssize(T&& t);

返回转换到有符号类型的范围大小。

ranges::size(std::forward<T>(t)) 为良构,令 MadeSigned 代表

则调用 ranges::ssize 表达式等价于 static_cast<MadeSigned>(ranges::size(std::forward<T>(t)))

否则,调用 ranges::ssize 为非良构,这能在 ranges::ssize(t) 出现于模板实例化的立即语境时导致替换失败

表达式等价

表达式 e 表达式等价于表达式 f ,若 ef 拥有相同效果,均为潜在抛出或均非潜在抛出(即 noexcept(e) == noexcept(f) ),且均为常量子表达式或均非常量子表达式。

定制点对象

名字 ranges::ssize 代表一个定制点对象,它是字面 semiregular 类类型的 const 函数对象。为说明目的,以 __ssize_fn 表示其类型的 cv 无限定版本。

__ssize_fn 的所有实例均相等。在相同参数上调用类型 __ssize_fn 的不同实例的效果是等价的,无关乎指代该实例的表达式是左值还是右值,以及是否为 const 限定(然而不要求 volatile 限定的实例可调用)。从而能自由地复制 ranges::ssize 并且能彼此替代地使用其副本。

给定类型集合 Args... ,若 std::declval<Args>()... 满足上面对于 ranges::ssize 的参数要求,则 __ssize_fn 实现 std::invocable<__ssize_fn, Args...>std::invocable<const __ssize_fn, Args...>std::invocable<__ssize_fn&, Args...>std::invocable<const __ssize_fn&, Args...> 。否则, __ssize_fn 的函数调用运算符不参与重载决议。

注解

ranges::ssize(e) 对于表达式 e 合法,则返回类型为有符号整数式类型,即 std::is_signed_v 对其为 true 的整数类型,或有符号整数类类型。

整数式类型的宽度能由 std::numeric_limits::digits 检测。

示例

#include <array>
#include <iostream>
#include <ranges>
#include <type_traits>
 
int main()
{
    std::array arr{1, 2, 3, 4, 5};
    auto s = std::ranges::ssize(arr);
 
    std::cout << "ranges::ssize(arr) = " << s << '\n'
              << "ranges::ssize is "
              << (std::is_signed_v<decltype(s)> ? "signed" : "unsigned")
              << '\n';
 
    std::cout << "reversed arr: ";
 
    for (--s; s >= 0; --s)
        std::cout << arr[s] << ' ';
 
    std::cout << "\n" "s = " << s << '\n';
}

输出:

ranges::ssize(arr) = 5
ranges::ssize is signed
reversed arr: 5 4 3 2 1 
s = -1

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

DR 应用于 出版时的行为 正确行为
LWG 3403 C++20 ranges::size 可作用于某些非范围类型但 ranges::ssize 不能 使之能

参阅

返回等于范围大小的整数
(定制点对象)
(C++17)(C++20)
返回容器或数组的大小
(函数模板)