aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/misc/enum.h
diff options
context:
space:
mode:
authorhiddenpath <hiddenpath@yandex-team.com>2025-03-25 14:31:21 +0300
committerhiddenpath <hiddenpath@yandex-team.com>2025-03-25 14:59:32 +0300
commit142f1b5904ca33612aa65b98a10444ea655b0ab1 (patch)
tree4369739ee8a48fa23a5fa6196d63236c1e548708 /library/cpp/yt/misc/enum.h
parentfb0706c704e0253cc65a489b324ccec66ef85bf8 (diff)
downloadydb-142f1b5904ca33612aa65b98a10444ea655b0ab1.tar.gz
Make some methods of smart enum being constexpr
commit_hash:c29f08fc16d8bd974d4ce516af499de848607ab8
Diffstat (limited to 'library/cpp/yt/misc/enum.h')
-rw-r--r--library/cpp/yt/misc/enum.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/yt/misc/enum.h b/library/cpp/yt/misc/enum.h
index 331eb59f1a..99af78e81e 100644
--- a/library/cpp/yt/misc/enum.h
+++ b/library/cpp/yt/misc/enum.h
@@ -84,18 +84,18 @@ struct TEnumTraits<T, true>
static constexpr bool IsStringSerializableEnum = TEnumTraitsImpl<T>::IsStringSerializableEnum;
static constexpr bool IsMonotonic = TEnumTraitsImpl<T>::IsMonotonic;
- static TStringBuf GetTypeName();
+ static constexpr TStringBuf GetTypeName();
static constexpr std::optional<T> TryGetUnknownValue();
- static std::optional<TStringBuf> FindLiteralByValue(T value);
- static std::optional<T> FindValueByLiteral(TStringBuf literal);
+ static constexpr std::optional<TStringBuf> FindLiteralByValue(T value);
+ static constexpr std::optional<T> FindValueByLiteral(TStringBuf literal);
static constexpr bool IsKnownValue(T value)
requires (!TEnumTraitsImpl<T>::IsBitEnum);
static constexpr bool IsValidValue(T value);
static TString ToString(T value);
- static T FromString(TStringBuf literal);
+ static constexpr T FromString(TStringBuf literal);
};
////////////////////////////////////////////////////////////////////////////////