mirror of
https://github.com/Neargye/magic_enum.git
synced 2026-01-09 23:34:23 +00:00
fix doc
This commit is contained in:
parent
a560110ead
commit
126539e13c
1 changed files with 2 additions and 5 deletions
|
|
@ -321,13 +321,10 @@ constexpr bool enum_contains(string_view value, BinaryPredicate p) noexcept(is_n
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
template <typename E>
|
template <typename E>
|
||||||
constexpr bool enum_contains(E value) noexcept;
|
constexpr bool enum_reflected(E value) noexcept;
|
||||||
|
|
||||||
template <typename E>
|
template <typename E>
|
||||||
constexpr bool enum_contains(underlying_type_t<E> value) noexcept;
|
constexpr bool enum_reflected(underlying_type_t<E> value) noexcept;
|
||||||
|
|
||||||
template <typename E>
|
|
||||||
constexpr bool enum_contains(string_view value) noexcept;
|
|
||||||
```
|
```
|
||||||
|
|
||||||
* Returns true if the enum value is in the range of values that can be reflected.
|
* Returns true if the enum value is in the range of values that can be reflected.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue