std::hash specialization using sfinae?

此生再无相见时 提交于 2019-11-28 11:16:23

You are not supposed to specialize std::hash for types that doesn't depend on a type you defined yourself.

That said, this hack might work:

template<class T, class E>
using first = T;

template <typename T>
struct hash<first<std::pair<T, T>, std::enable_if_t<std::is_unsigned<T>::value>>>
{
    size_t operator()(const std::pair<T, T>& x) const
    {
        return x;
    }
};

Really, though, don't do this. Write your own hasher.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!