我有这个代码:
...
#include "boost/tuple/tuple_comparison.hpp"
...
template <typename ReturnType, typename... Args>
function<ReturnType(Args...)> memoize(const Args && ... args)
{
using noRef = boost::tuple<typename std::remove_reference<Args>::type...>;
static map<noRef, ReturnType, less<>> cache;
auto key = std::tie(noRef{ boost::make_tuple(args ...) });
auto it = cache.lower_bound(key);
ReturnType result;
if (it->first == key) { ...
但是当我尝试编译它时,我收到了这个错误:
error C2678: binary '==': no operator found which takes a left-hand operand of type 'const noRef' (or there is no acceptable conversion)
为什么会发生这种情况,因为noRef
它是这个案例的别名boost::tuple
并且tuple_comparison
应该管理这个案例?
发现错误,不知道如何解决:
似乎错误是在std::tie
操作中。所以重写为:
auto key = noRef{ boost::make_tuple(args ...) };
工作正常。问题是这种解决方案效率低下,因为key
它可能是整个元组的昂贵副本,而使用tie
的是引用元组(小得多)。那么,我怎样才能引用it->first
元组呢?我应该使用相同的tie
技巧吗?