更新
(functional/update.hpp)
- View this file on GitHub
- Last update: 2020-09-19 12:18:12+09:00
- Include:
#include "functional/update.hpp"
Verified with
Code
#pragma once
/**
* @brief 更新
*/
template<typename T>
struct update{
T operator()(const T& s,const T& t){
return t;
}
};
#line 2 "functional/update.hpp"
/**
* @brief 更新
*/
template<typename T>
struct update{
T operator()(const T& s,const T& t){
return t;
}
};