|
| 1 | +// |
| 2 | +// This is a derivative work. originally part of the LLVM Project. |
| 3 | +// Licensed under the Apache License v2.0 with LLVM Exceptions. |
| 4 | +// See https://llvm.org/LICENSE.txt for license information. |
| 5 | +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | +// |
| 7 | +// Copyright (c) 2023 Vinnie Falco ([email protected]) |
| 8 | +// |
| 9 | +// Official repository: https://github.com/cppalliance/mrdox |
| 10 | +// |
| 11 | + |
| 12 | +#ifndef MRDOX_ADT_OPTIONAL_HPP |
| 13 | +#define MRDOX_ADT_OPTIONAL_HPP |
| 14 | + |
| 15 | +#include <mrdox/Platform.hpp> |
| 16 | +#include <type_traits> |
| 17 | +#include <utility> |
| 18 | + |
| 19 | +namespace clang { |
| 20 | +namespace mrdox { |
| 21 | + |
| 22 | +/** The default empty predicate. |
| 23 | +
|
| 24 | + This predicate is true when t.empty() returns |
| 25 | + `true` where `t` is a `T`. |
| 26 | +*/ |
| 27 | +struct DefaultEmptyPredicate |
| 28 | +{ |
| 29 | + template<class T> |
| 30 | + requires |
| 31 | + requires(T t) { t.empty(); } |
| 32 | + constexpr bool operator()(T const& t) const noexcept |
| 33 | + { |
| 34 | + return t.empty(); |
| 35 | + } |
| 36 | +}; |
| 37 | + |
| 38 | +/** A compact optional. |
| 39 | +
|
| 40 | + This works like std::optional except the |
| 41 | + predicate is invoked to determine whether |
| 42 | + the optional is engaged. This is a space |
| 43 | + optimization. |
| 44 | +*/ |
| 45 | +template< |
| 46 | + class T, |
| 47 | + class EmptyPredicate = DefaultEmptyPredicate> |
| 48 | +class Optional |
| 49 | +{ |
| 50 | + T t_; |
| 51 | + |
| 52 | +public: |
| 53 | + using value_type = T; |
| 54 | + |
| 55 | + constexpr Optional() = default; |
| 56 | + constexpr Optional( |
| 57 | + Optional const& other) = default; |
| 58 | + constexpr Optional& operator=( |
| 59 | + Optional const& other) = default; |
| 60 | + |
| 61 | + template<class U> |
| 62 | + requires std::is_constructible_v<T, U> |
| 63 | + constexpr explicit |
| 64 | + Optional(U&& u) |
| 65 | + : t_(std::forward<U>(u)) |
| 66 | + { |
| 67 | + } |
| 68 | + |
| 69 | + template<typename... Args> |
| 70 | + requires std::is_constructible_v<T, Args...> |
| 71 | + constexpr value_type& emplace(Args&&... args) |
| 72 | + { |
| 73 | + return t_ = T(std::forward<Args>(args)...); |
| 74 | + } |
| 75 | + |
| 76 | + constexpr value_type& operator*() noexcept |
| 77 | + { |
| 78 | + return t_; |
| 79 | + } |
| 80 | + |
| 81 | + constexpr value_type const& operator*() const noexcept |
| 82 | + { |
| 83 | + return t_; |
| 84 | + } |
| 85 | + |
| 86 | + constexpr explicit operator bool() const noexcept |
| 87 | + { |
| 88 | + return has_value(); |
| 89 | + } |
| 90 | + |
| 91 | + constexpr bool has_value() const noexcept |
| 92 | + { |
| 93 | + return ! EmptyPredicate()(t_); |
| 94 | + } |
| 95 | +}; |
| 96 | + |
| 97 | +} // mrdox |
| 98 | +} // clang |
| 99 | + |
| 100 | +#endif |
0 commit comments