:heavy_check_mark: 更新
(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;
    }
};
Back to top page