forked from TartanLlama/expected
First go at map_error
This commit is contained in:
88
expected.hpp
88
expected.hpp
@@ -544,6 +544,7 @@ public:
|
|||||||
: result(unexpect, std::move(this->error()));
|
: result(unexpect, std::move(this->error()));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef TL_EXPECTED_CXX14
|
#ifdef TL_EXPECTED_CXX14
|
||||||
/// \brief Carries out some operation on the stored object if there is one.
|
/// \brief Carries out some operation on the stored object if there is one.
|
||||||
@@ -603,6 +604,68 @@ public:
|
|||||||
return map_impl(std::move(*this), std::forward<F>(f));
|
return map_impl(std::move(*this), std::forward<F>(f));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef TL_EXPECTED_CXX14
|
||||||
|
/// \brief Carries out some operation on the stored object if there is one.
|
||||||
|
/// \returns Let `U` be the result of `std::invoke(std::forward<F>(f),
|
||||||
|
/// value())`. Returns a `std::expected<U>`. The return value is empty if
|
||||||
|
/// `*this` is empty, otherwise an `expected<U>` is constructed from the
|
||||||
|
/// return value of `std::invoke(std::forward<F>(f), value())` and is
|
||||||
|
/// returned. \group map_error \synopsis template <class F> auto map_error(F
|
||||||
|
/// &&f) &;
|
||||||
|
template <class F> TL_EXPECTED_11_CONSTEXPR auto map_error(F &&f) & {
|
||||||
|
return map_error_impl(*this, std::forward<F>(f));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class F> TL_EXPECTED_11_CONSTEXPR auto map_error(F &&f) && {
|
||||||
|
return map_error_impl(std::move(*this), std::forward<F>(f));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class F> constexpr auto map_error(F &&f) const & {
|
||||||
|
return map_error_impl(*this, std::forward<F>(f));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class F> constexpr auto map_error(F &&f) const && {
|
||||||
|
return map_error_impl(std::move(*this), std::forward<F>(f));
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
/// \brief Carries out some operation on the stored object if there is one.
|
||||||
|
/// \returns Let `U` be the result of `std::invoke(std::forward<F>(f),
|
||||||
|
/// value())`. Returns a `std::expected<U>`. The return value is empty if
|
||||||
|
/// `*this` is empty, otherwise an `expected<U>` is constructed from the
|
||||||
|
/// return value of `std::invoke(std::forward<F>(f), value())` and is
|
||||||
|
/// returned. \group map_error \synopsis template <class F> auto map_error(F
|
||||||
|
/// &&f) &;
|
||||||
|
template <class F>
|
||||||
|
TL_EXPECTED_11_CONSTEXPR decltype(map_error_impl(std::declval<expected &>(),
|
||||||
|
std::declval<F &&>()))
|
||||||
|
map_error(F &&f) & {
|
||||||
|
return map_error_impl(*this, std::forward<F>(f));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class F>
|
||||||
|
TL_EXPECTED_11_CONSTEXPR decltype(map_error_impl(std::declval<expected &&>(),
|
||||||
|
std::declval<F &&>()))
|
||||||
|
map_error(F &&f) && {
|
||||||
|
return map_error_impl(std::move(*this), std::forward<F>(f));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class F>
|
||||||
|
constexpr decltype(map_error_impl(std::declval<const expected &>(),
|
||||||
|
std::declval<F &&>()))
|
||||||
|
map_error(F &&f) const & {
|
||||||
|
return map_error_impl(*this, std::forward<F>(f));
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifndef TL_EXPECTED_NO_CONSTRR
|
||||||
|
template <class F>
|
||||||
|
constexpr decltype(map_error_impl(std::declval<const expected &&>(),
|
||||||
|
std::declval<F &&>()))
|
||||||
|
map_error(F &&f) const && {
|
||||||
|
return map_error_impl(std::move(*this), std::forward<F>(f));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
constexpr expected() = default;
|
constexpr expected() = default;
|
||||||
@@ -868,6 +931,31 @@ private:
|
|||||||
return unexpected<err_t<Exp>>(std::forward<Exp>(exp).error());
|
return unexpected<err_t<Exp>>(std::forward<Exp>(exp).error());
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef TL_EXPECTED_CXX14
|
||||||
|
template <class Exp, class F,
|
||||||
|
class Ret = decltype(detail::invoke(std::declval<F>(),
|
||||||
|
*std::declval<Exp>()))>
|
||||||
|
static constexpr auto map_error_impl(Exp &&exp, F &&f) {
|
||||||
|
using result = ret_t<Exp, Ret>;
|
||||||
|
return exp.has_value()
|
||||||
|
? result(*std::forward<Exp>(exp))
|
||||||
|
: result(unexpect,
|
||||||
|
detail::invoke(std::forward<F>(f),
|
||||||
|
std::forward<Exp>(exp).error()));
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
template <class Exp, class F,
|
||||||
|
class Ret = decltype(detail::invoke(std::declval<F>(),
|
||||||
|
*std::declval<Exp>()))>
|
||||||
|
static constexpr auto map_error_impl(Exp &&exp, F &&f) -> ret_t<Exp, Ret> {
|
||||||
|
using result = ret_t<Exp, Ret>;
|
||||||
|
|
||||||
|
return exp.has_value() ? result(detail::invoke(std::forward<F>(f),
|
||||||
|
*std::forward<Exp>(exp)))
|
||||||
|
: result(unexpect, std::forward<Exp>(exp).error());
|
||||||
|
}
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
|
Reference in New Issue
Block a user