Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Neargye committed Sep 22, 2024
1 parent a560110 commit 126539e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions doc/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,13 +321,10 @@ constexpr bool enum_contains(string_view value, BinaryPredicate p) noexcept(is_n

```cpp
template <typename E>
constexpr bool enum_contains(E value) noexcept;
constexpr bool enum_reflected(E value) noexcept;

template <typename E>
constexpr bool enum_contains(underlying_type_t<E> value) noexcept;

template <typename E>
constexpr bool enum_contains(string_view value) noexcept;
constexpr bool enum_reflected(underlying_type_t<E> value) noexcept;
```
* Returns true if the enum value is in the range of values that can be reflected.
Expand Down

0 comments on commit 126539e

Please sign in to comment.