diff options
author | vvvv <[email protected]> | 2025-10-06 11:26:09 +0300 |
---|---|---|
committer | vvvv <[email protected]> | 2025-10-06 11:53:26 +0300 |
commit | 60f45e69a4d7dbc6131208e16c45faf35aa5a985 (patch) | |
tree | 4daa45b52c295a178c7620e4c93921465fcf7950 /yql/essentials/utils/docs/verification.h | |
parent | 1bded1a65a7e6e9171418f3e1c691d390125b64e (diff) |
YQL-20086 utils
init
commit_hash:54feccd520ebd0ab23612bc0cb830914dff9d0e8
Diffstat (limited to 'yql/essentials/utils/docs/verification.h')
-rw-r--r-- | yql/essentials/utils/docs/verification.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/yql/essentials/utils/docs/verification.h b/yql/essentials/utils/docs/verification.h index 4eac54017f8..0f9a2aa8214 100644 --- a/yql/essentials/utils/docs/verification.h +++ b/yql/essentials/utils/docs/verification.h @@ -8,26 +8,26 @@ namespace NYql::NDocs { - enum class EFame { - BadLinked, - Unknown, - Mentioned, - Documented, - }; +enum class EFame { + BadLinked, + Unknown, + Mentioned, + Documented, +}; - using TStatusesByName = TMap<TString, TString>; +using TStatusesByName = TMap<TString, TString>; - using TFameReport = THashMap<EFame, TStatusesByName>; +using TFameReport = THashMap<EFame, TStatusesByName>; - struct TVerificationInput { - TLinks Links; - TPages Pages; - TSet<TString> Names; - TMap<TString, TString> ShortHands; - }; +struct TVerificationInput { + TLinks Links; + TPages Pages; + TSet<TString> Names; + TMap<TString, TString> ShortHands; +}; - TFameReport Verify(TVerificationInput input); +TFameReport Verify(TVerificationInput input); - double Coverage(const TFameReport& report, const TVector<TString>& names); +double Coverage(const TFameReport& report, const TVector<TString>& names); } // namespace NYql::NDocs |