File tree 1 file changed +20
-2
lines changed
1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -42,8 +42,6 @@ struct DefaultEmptyPredicate
42
42
{
43
43
return !t;
44
44
}
45
-
46
-
47
45
};
48
46
49
47
/* * A compact optional.
@@ -65,8 +63,27 @@ class Optional
65
63
66
64
constexpr Optional () = default;
67
65
constexpr Optional (Optional const & other) = default;
66
+
68
67
constexpr Optional& operator =(Optional const & other) = default ;
69
68
constexpr Optional& operator =(Optional&& other) = default ;
69
+ constexpr Optional& operator =(T const & t)
70
+ {
71
+ t_ = t;
72
+ return *this ;
73
+ }
74
+
75
+ constexpr Optional& operator =(T&& t)
76
+ {
77
+ t_ = std::move (t);
78
+ return *this ;
79
+ }
80
+
81
+ constexpr Optional& operator =(std::nullptr_t )
82
+ {
83
+ t_ = T ();
84
+ MRDOCS_ASSERT (!this ->operator bool ());
85
+ return *this ;
86
+ }
70
87
71
88
template <class U >
72
89
requires std::is_constructible_v<T, U>
@@ -79,6 +96,7 @@ class Optional
79
96
constexpr void reset ()
80
97
{
81
98
*this = Optional ();
99
+ MRDOCS_ASSERT (!this ->operator bool ());
82
100
}
83
101
84
102
template <typename ... Args>
You can’t perform that action at this time.
0 commit comments