2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-01-02 14:42:31 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
2018-04-28 10:56:10 +02:00
|
|
|
#include <type_traits>
|
2018-12-31 20:04:05 +01:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class optional {
|
|
|
|
public:
|
|
|
|
optional() = default;
|
2018-04-12 11:11:48 +02:00
|
|
|
template <class T1, std::enable_if_t<!std::is_same<std::decay_t<T1>, optional>::value, int> = 0>
|
2018-12-31 20:04:05 +01:00
|
|
|
optional(T1 &&t) : impl_(std::forward<T1>(t)) {
|
|
|
|
}
|
2018-04-06 21:37:30 +02:00
|
|
|
explicit operator bool() const {
|
2018-12-31 20:04:05 +01:00
|
|
|
return impl_.is_ok();
|
|
|
|
}
|
|
|
|
T &value() {
|
|
|
|
return impl_.ok_ref();
|
|
|
|
}
|
2018-04-06 21:37:30 +02:00
|
|
|
const T &value() const {
|
|
|
|
return impl_.ok_ref();
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
T &operator*() {
|
|
|
|
return value();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Result<T> impl_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|