最小値
(functional/MIN.hpp)
- View this file on GitHub
- Last update: 2020-09-18 14:44:21+09:00
- Include:
#include "functional/MIN.hpp"
Required by
Verified with
Code
#pragma once
#include<algorithm>
/**
* @brief 最小値
*/
template<typename T>
struct MIN{
T operator()(const T& s,const T& t){
return std::min(s,t);
}
};
#line 2 "functional/MIN.hpp"
#include<algorithm>
/**
* @brief 最小値
*/
template<typename T>
struct MIN{
T operator()(const T& s,const T& t){
return std::min(s,t);
}
};