我有一个容器template <typename T> class A
,它operator+
需要为许多其他容器、表达式模板和文字类型重载U
。
我目前的策略是定义一个模板函数wrap
,该函数封装了如何访问和定义各个元素
template <typename T, typename U>
auto operator+(Wrapped<T>&& lhs, Wrapped<U>&& rhs) -> decltype(...)
{
....
}
然而,下面的重载operator+
是模棱两可的:
template <typename T, typename U>
auto operator+(const A<T>& lhs, U&& rhs) ->
decltype(wrap(lhs) + wrap(std::forward<U>(rhs)))
{
return wrap(lhs) + wrap(std::forward<U>(rhs));
}
template <typename T, typename U>
auto operator+(T&& lhs, const A<U>& rhs) ->
decltype(wrap(std::forward<T>(lhs)) + wrap(rhs))
{
return wrap(std::forward<T>(lhs)) + wrap(rhs);
}
我怎样才能最好地解决歧义?