Defined in header <algorithm> | ||
---|---|---|
Call signature | ||
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 = {} ); | (since C++20) |
If v
compares less than lo
, returns lo
; otherwise if hi
compares less than v
, returns hi
; otherwise returns v
.
The behavior is undefined if lo
is greater than hi
.
The function-like entities described on this page are niebloids, that is:
In practice, they may be implemented as function objects, or with special compiler extensions.
v | - | the value to clamp |
lo, hi | - | the boundaries to clamp v to |
comp | - | the comparison to apply to the projected elements |
proj | - | the projection to apply to v , lo and hi |
Reference to lo
if the projected value of v
is less than the projected value of lo
, reference to hi
if the projected value of hi
is less than the projected value of v
, otherwise reference to v
.
At most two comparisons and three applications of the projection.
std::ranges::clamp
by reference produces a dangling reference if one of the parameters is a temporary and that parameter is returned: If v
compares equivalent to either bound, returns a reference to v
, not the bound.
#include <algorithm> #include <cstdint> #include <iomanip> #include <iostream> #include <string> using namespace std::literals; namespace ranges = std::ranges; int main() { for (std::cout << " raw clamped to int8_t clamped to uint8_t\n"; int const v: {-129, -128, -1, 0, 42, 127, 128, 255, 256}) std::cout << std::setw(04) << v << std::setw(20) << ranges::clamp(v, INT8_MIN, INT8_MAX) << std::setw(21) << ranges::clamp(v, 0, UINT8_MAX) << '\n'; std::cout << '\n'; // Projection function const auto stoi = [](std::string s) { return std::stoi(s); }; // Same as above, but with strings for (std::string const v: {"-129", "-128", "-1", "0", "42", "127", "128", "255", "256"}) std::cout << std::setw(04) << v << std::setw(20) << ranges::clamp(v, "-128"s, "127"s, {}, stoi) << std::setw(21) << ranges::clamp(v, "0"s, "255"s, {}, stoi) << '\n'; }
Output:
(C++20) | returns the smaller of the given values (niebloid) |
(C++20) | returns the greater of the given values (niebloid) |
(C++20) | checks if an integer value is in the range of a given integer type (function template) |
(C++17) | clamps a value between a pair of boundary values (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/algorithm/ranges/clamp