std::ranges::clamp

来自cppreference.com
< cpp‎ | algorithm‎ | ranges
 
 
算法库
受约束算法及范围上的算法 (C++20)
受约束算法: std::ranges::copy, std::ranges::sort, ...
执行策略 (C++17)
不修改序列的操作
(C++11)(C++11)(C++11)
(C++17)
修改序列的操作
Partitioning operations
划分操作
排序操作
(C++11)
二分搜索操作
集合操作(在已排序范围上)
堆操作
(C++11)
最小/最大操作
(C++11)
(C++17)

排列
数值运算
未初始化存储上的操作
(C++17)
(C++17)
(C++17)
C 库
 
受约束算法
不修改序列的操作
修改序列的操作
划分操作
排序操作
二分搜索操作
集合操作(在已排序范围上)
堆操作
最小/最大操作
ranges::clamp

排列
未初始化存储上的操作
返回类型
 
在标头 <algorithm> 定义
调用签名
template< class T, class Proj = std::identity,

          std::indirect_strict_weak_order<std::projected<const T*, Proj>> Comp = ranges::less >

constexpr const T& clamp( const T& v, const T& lo, const T& hi, Comp comp = {}, Proj proj = {} );
(C++20 起)

v 比较小于 lo 则返回 lo ;否则若 hi 比较小于 v 则返回 hi ;否则返回 v


lo 的被投影值大于 hi 则行为未定义。

此页面上描述的仿函数实体是 niebloid,即:

实际上,它们能以函数对象,或者某些特殊编译器扩展实现。

参数

v - 待夹的值
lo, hi - 用以夹 v 的边界
comp - 应用到投影后元素的比较
proj - 应用到 vlohi 的投影

返回值

v 的被投影值小于 lo 的被投影值则为到 lo 的引用,若 hi 的被投影值小于 v 的被投影值则为 hi 到的引用,否则为到 v 的引用。

复杂度

至多应用二次比较和三次投影。

可能的实现

struct clamp_fn
{
    template<class T, class Proj = std::identity,
             std::indirect_strict_weak_order<std::projected<const T*, Proj>>
                 Comp = std::ranges::less>
    constexpr const T& operator()(const T& v, const T& lo, const T& hi,
                                  Comp comp = {}, Proj proj = {}) const
    {
        auto&& pv = std::invoke(proj, v);
 
        if (std::invoke(comp, std::forward<decltype(pv)>(pv), std::invoke(proj, lo)))
            return lo;
 
        if (std::invoke(comp, std::invoke(proj, hi), std::forward<decltype(pv)>(pv)))
            return lo;
 
        return v;
    }
};
 
inline constexpr clamp_fn clamp;

注解

如果参数之一是临时量,而该参数被返回,那么以引用捕获 std::ranges::clamp 的结果会产生一个悬垂引用:
int n = 1;
const int& r = std::ranges::clamp(n - 1, n + 1); // r 悬垂

v 与任一边界比较等价,则返回到 v 而非到边界的引用。

不应将按值返回的投影以及按值接收参数的比较器用于此函数,除非从投影结果类型到比较器参数类型的移动等价于复制。如果经由 std::invoke 的比较会改变投影结果,则由于(std::indirect_strict_weak_order 所蕴含的) std::regular_invocable 语义要求行为未定义。

标准要求保持投影结果的值类别,并且只能在 v 上调用 proj 一次,这表示必须缓存纯右值投影结果并对两次比较器的调用各将它移动一次。

  • libstdc++ 不遵从此要求,并始终将投影结果作为左值传递。
  • libc++ 不遵从此要求,由于执行两次投影。
  • MSVC STL 曾经执行两次投影,这在 VS 2022 17.2 中更正。

示例

#include <algorithm>
#include <cstdint>
#include <iostream>
#include <iomanip>
#include <string>
 
using namespace std::literals;
 
int main()
{
    std::cout << " raw   clamped to int8_t   clamped to uint8_t\n";
    for(int const v: {-129, -128, -1, 0, 42, 127, 128, 255, 256}) {
        std::cout << std::setw(04) << v
                  << std::setw(20) << std::ranges::clamp(v, INT8_MIN, INT8_MAX)
                  << std::setw(21) << std::ranges::clamp(v, 0, UINT8_MAX) << '\n';
    }
    std::cout << '\n';
 
    // 投影函数
    const auto stoi = [](std::string s) { return std::stoi(s); };
 
    // 同上,但用字符串
    for(std::string const v: {"-129", "-128", "-1", "0", "42", "127", "128", "255", "256"}) {
        std::cout << std::setw(04) << v
                  << std::setw(20) << std::ranges::clamp(v, "-128"s, "127"s, {}, stoi)
                  << std::setw(21) << std::ranges::clamp(v, "0"s, "255"s, {}, stoi) << '\n';
    }
}

输出:

 raw   clamped to int8_t   clamped to uint8_t
-129                -128                    0
-128                -128                    0
  -1                  -1                    0
   0                   0                    0
  42                  42                   42
 127                 127                  127
 128                 127                  128
 255                 127                  255
 256                 127                  255
 
-129                -128                    0
-128                -128                    0
  -1                  -1                    0
   0                   0                    0
  42                  42                   42
 127                 127                  127
 128                 127                  128
 255                 127                  255
 256                 127                  255

参阅

返回给定值的较小者
(niebloid)
返回给定值的较大者
(niebloid)
(C++20)
检查整数值是否在给定整数类型的范围内
(函数模板)
(C++17)
在一对边界值间夹逼一个值
(函数模板)