:heavy_check_mark: 最小値
(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);
    }
};
Back to top page