You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ideal would be a way of registering other optional types. We use std::optional and absl::optional. It would be nice if I could do something like template <typename T> struct tl::is_some_optional<absl::optional<T>> : std::true_type {}. Likewise boost::optional. And likewise std::nulloopt_t, absl::nullopt_t, etc.
Make
tl::optional<U>
constructible fromstd::optional<T>
, when T is convertible to U.The text was updated successfully, but these errors were encountered: