Expected<T>
реализовано в llvm / Support / Error.h. Это теговое объединение, содержащее либо T
, либо Error
.
Expected<T>
- это шаблон класса с типом T
:
template <class T> class LLVM_NODISCARD Expected
Но эти два конструктора действительносмути меня:
/// Move construct an Expected<T> value from an Expected<OtherT>, where OtherT
/// must be convertible to T.
template <class OtherT>
Expected(Expected<OtherT> &&Other,
typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
* = nullptr) {
moveConstruct(std::move(Other));
}
/// Move construct an Expected<T> value from an Expected<OtherT>, where OtherT
/// isn't convertible to T.
template <class OtherT>
explicit Expected(
Expected<OtherT> &&Other,
typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * =
nullptr) {
moveConstruct(std::move(Other));
}
Почему Expected<T>
повторяет две конструкции для одной и той же реализации? Почему он так не делает ?:
template <class OtherT>
Expected(Expected<OtherT>&& Other) { moveConstruct(std::move(Other));}