Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
// This file is part of Desktop App Toolkit,
|
|
// a set of libraries for developing nice desktop applications.
|
|
//
|
|
// For license and copyright information please follow this link:
|
|
// https://github.com/desktop-app/legal/blob/master/LEGAL
|
|
//
|
|
#pragma once
|
|
|
|
namespace base {
|
|
|
|
template <typename T>
|
|
struct required {
|
|
template <
|
|
typename U,
|
|
typename = std::enable_if_t<std::is_constructible_v<T, U&&>>>
|
|
constexpr required(U &&value) noexcept : _value(std::forward<U>(value)) {
|
|
}
|
|
template <
|
|
typename U,
|
|
typename = std::enable_if_t<std::is_assignable_v<T, U&&>>>
|
|
constexpr required &operator=(U &&value) noexcept {
|
|
_value = std::forward<U>(value);
|
|
return *this;
|
|
}
|
|
constexpr required(required &&) = default;
|
|
constexpr required(const required &) = default;
|
|
constexpr required &operator=(required &&) = default;
|
|
constexpr required &operator=(const required &) = default;
|
|
|
|
[[nodiscard]] constexpr T &operator*() noexcept {
|
|
return _value;
|
|
}
|
|
[[nodiscard]] constexpr const T &operator*() const noexcept {
|
|
return _value;
|
|
}
|
|
[[nodiscard]] constexpr T &value() noexcept {
|
|
return _value;
|
|
}
|
|
[[nodiscard]] constexpr const T &value() const noexcept {
|
|
return _value;
|
|
}
|
|
[[nodiscard]] constexpr T *operator->() noexcept {
|
|
return &_value;
|
|
}
|
|
[[nodiscard]] constexpr const T *operator->() const noexcept {
|
|
return &_value;
|
|
}
|
|
[[nodiscard]] constexpr T *get() noexcept {
|
|
return &_value;
|
|
}
|
|
[[nodiscard]] constexpr const T *get() const noexcept {
|
|
return &_value;
|
|
}
|
|
[[nodiscard]] operator T&() noexcept {
|
|
return _value;
|
|
}
|
|
[[nodiscard]] operator const T&() const noexcept {
|
|
return _value;
|
|
}
|
|
|
|
private:
|
|
T _value;
|
|
|
|
};
|
|
|
|
} // namespace base
|