From 126539e13cccdc2e75ce770e94f3c26403099fa5 Mon Sep 17 00:00:00 2001 From: neargye Date: Sun, 22 Sep 2024 19:59:40 +0300 Subject: [PATCH] fix doc --- doc/reference.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/doc/reference.md b/doc/reference.md index bd0d4f6d6..841b1506f 100644 --- a/doc/reference.md +++ b/doc/reference.md @@ -321,13 +321,10 @@ constexpr bool enum_contains(string_view value, BinaryPredicate p) noexcept(is_n ```cpp template -constexpr bool enum_contains(E value) noexcept; +constexpr bool enum_reflected(E value) noexcept; template -constexpr bool enum_contains(underlying_type_t value) noexcept; - -template -constexpr bool enum_contains(string_view value) noexcept; +constexpr bool enum_reflected(underlying_type_t value) noexcept; ``` * Returns true if the enum value is in the range of values that can be reflected.