Skip to content

Latest commit

 

History

History
83 lines (63 loc) · 1.81 KB

clamp.md

File metadata and controls

83 lines (63 loc) · 1.81 KB

clamp

  • 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]に収める。

テンプレートパラメータ制約

事前条件

  • lowの値はhighの値より大きくなってはならない

戻り値

  • vの値がlowより小さければlowを返す
  • vの値がhighより大きければhighを返す
  • そうでなければvを返す

備考

  • clamp(v, low, high)min(max(v, low), high)と等価

#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

処理系

参照