-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.hpp
147 lines (132 loc) · 4.81 KB
/
result.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Result.hpp
#pragma once
#include "_include.hpp"
#include "_detail.hpp"
#include "_option_result_base.hpp"
#include "option.hpp"
#include "panic.hpp"
#include <functional>
#include <type_traits>
#include <utility>
namespace rust {
namespace result {
// Result<T, E>::transpose
template<class T, class E>
template<class U>
[[nodiscard]] constexpr std::enable_if_t<rust::detail::is_option_v<U>, option::Option<Result<typename U::value_type, E>>>
Result<T, E>::transpose() const& {
using Opt = option::Option<Result<typename U::value_type, E>>;
if (is_ok()) {
if (get_val())
return Opt{ok_tag, *get_val()};
return Opt{option::None};
}
return Opt{err_tag, get_err()};
}
template<class T, class E>
template<class U>
[[nodiscard]] constexpr std::enable_if_t<rust::detail::is_option_v<U>, option::Option<Result<typename U::value_type, E>>>
Result<T, E>::transpose() && {
using Opt = option::Option<Result<typename U::value_type, E>>;
if (is_ok()) {
if (get_val())
return Opt{ok_tag, std::move(*get_val())};
return Opt{option::None};
}
return Opt{err_tag, std::move(get_err())};
}
template<class T, class E>
template<class U>
[[nodiscard]] constexpr std::enable_if_t<rust::detail::is_option_v<U>, option::Option<Result<typename U::value_type, E>>>
Result<T&, E>::transpose() const& {
using Opt = option::Option<Result<typename U::value_type, E>>;
if (is_ok()) {
if (get_val())
return Opt{ok_tag, *get_val()};
return Opt{option::None};
}
return Opt{err_tag, get_err()};
}
template<class T, class E>
template<class U>
[[nodiscard]] constexpr std::enable_if_t<rust::detail::is_option_v<U>, option::Option<Result<typename U::value_type, E>>>
Result<T&, E>::transpose() && {
using Opt = option::Option<Result<typename U::value_type, E>>;
if (is_ok()) {
if (get_val())
return Opt{ok_tag, *get_val()};
return Opt{option::None};
}
return Opt{err_tag, std::move(get_err())};
}
template<class T, class E>
template<class U>
[[nodiscard]] constexpr std::enable_if_t<rust::detail::is_option_v<U>, option::Option<Result<typename U::value_type, E&>>>
Result<T, E&>::transpose() const& {
using Opt = option::Option<Result<typename U::value_type, E&>>;
if (is_ok()) {
if (get_val())
return Opt{ok_tag, *get_val()};
return Opt{option::None};
}
return Opt{err_tag, get_err()};
}
template<class T, class E>
template<class U>
[[nodiscard]] constexpr std::enable_if_t<rust::detail::is_option_v<U>, option::Option<Result<typename U::value_type, E&>>>
Result<T, E&>::transpose() && {
using Opt = option::Option<Result<typename U::value_type, E&>>;
if (is_ok()) {
if (get_val())
return Opt{ok_tag, std::move(*get_val())};
return Opt{option::None};
}
return Opt{err_tag, get_err()};
}
template<class T, class E>
template<class U>
[[nodiscard]] constexpr std::enable_if_t<rust::detail::is_option_v<U>, option::Option<Result<typename U::value_type, E&>>>
Result<T&, E&>::transpose() const {
using Opt = option::Option<Result<typename U::value_type, E&>>;
if (is_ok()) {
if (get_val())
return Opt{ok_tag, *get_val()};
return Opt{option::None};
}
return Opt{err_tag, get_err()};
}
template <class T, class E, class U, class F>
[[nodiscard]] inline constexpr bool operator==(Result<T, E> const& lhs, const Result<U, F> &rhs) {
return (lhs.is_ok() != rhs.is_ok())
? false
: (!lhs.is_ok() ? lhs.unwrap_err_unsafe() == rhs.unwrap_err_unsafe()
: lhs.unwrap_unsafe() == rhs.unwrap_unsafe());
}
template <class T, class E, class U, class F>
[[nodiscard]] inline constexpr bool operator!=(Result<T, E> const& lhs, Result<U, F> const& rhs) {
return (lhs.is_ok() != rhs.is_ok())
? true
: (!lhs.is_ok() ? lhs.unwrap_err_unsafe() != rhs.unwrap_err_unsafe()
: lhs.unwrap_unsafe() != rhs.unwrap_unsafe());
}
template <class T, class E,
std::enable_if_t<(std::is_void_v<T> ||
std::is_move_constructible_v<T>) &&
detail::is_swappable<T>::value &&
std::is_move_constructible_v<E> &&
detail::is_swappable<E>::value>* = nullptr>
inline void swap(Result<T, E>& lhs, Result<T, E>& rhs)
noexcept(noexcept(lhs.swap(rhs))) {
lhs.swap(rhs);
}
} // namespace result
} // namespace rust
namespace std {
// std::hash<Result<T, E>> specialization
template<class T, class E>
struct hash<rust::result::Result<T, E>> {
[[nodiscard]] constexpr size_t operator()(rust::result::Result<T, E> const& res) const {
return res.is_ok() ? hash<T>{res.unwrap_unsafe()}() : hash<E>{res.unwrap_err_unsafe()}();
}
};
}