- algorithm[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp17[meta cpp]
namespace std {
template <class T>
constexpr const T& clamp(const T& v, const T& low, const T& high);
template <class T, class Compare>
constexpr const T& clamp(const T& v, const T& low, const T& high, Compare comp);
}
値を範囲内に収める。
この関数は、v
の値を範囲[low, high]
に収める。
- (1) : 型
T
はLessThanComparableの要件を満たしていること
low
の値はhigh
の値より大きくなってはならない
v
の値がlow
より小さければlow
を返すv
の値がhigh
より大きければhigh
を返す- そうでなければ
v
を返す
#include <iostream>
#include <algorithm>
int main()
{
for (int i = 0; i < 10; ++i) {
// iの値を範囲[2, 7]に収める
int result = std::clamp(i, 2, 7);
std::cout << i << " : " << result << std::endl;
}
}
- std::clamp[color ff0000]
0 : 2
1 : 2
2 : 2
3 : 3
4 : 4
5 : 5
6 : 6
7 : 7
8 : 7
9 : 7
- C++17
- Clang: 3.9 [mark verified]
- GCC: 7.1 [mark verified]
- Visual C++: ??