Expected<T>
se implementa en llvm / Support / Error.h. Es una unión etiquetada que tiene una T
o una Error
.
Expected<T>
es una clase de plantilla con tipo T
:
template <class T> class LLVM_NODISCARD Expected
Pero estos dos constructores realmente me confunden:
/// 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));
}
¿Por qué Expected<T>
repite dos construcciones para la misma implementación? ¿Por qué no lo hace así?
template <class OtherT>
Expected(Expected<OtherT>&& Other) { moveConstruct(std::move(Other));}
explicit
palabras clave son importantes aquí. ¿Alguien podría dar un ejemplo?
explicit
palabra clave