mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
4da42afc94
git-svn-id: svn://qnap.local/TwoTerm/trunk@3138 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
29 lines
520 B
C++
29 lines
520 B
C++
//
|
|
// algorithm_17.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/12/2016.
|
|
//
|
|
//
|
|
|
|
#ifndef algorithm_17_h
|
|
#define algorithm_17_h
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
// c++17
|
|
|
|
template<class T, class Compare>
|
|
constexpr const T& clamp( const T& v, const T& lo, const T& hi, Compare comp ) {
|
|
return comp(v, hi) ? std::max(v, lo, comp) : std::min(v, hi, comp);
|
|
}
|
|
|
|
template<class T>
|
|
constexpr const T& clamp( const T& v, const T& lo, const T& hi ) {
|
|
return clamp( v, lo, hi, std::less<T>() );
|
|
}
|
|
|
|
|
|
#endif /* algorithm_17_h */
|