aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/charset/codepage.h
diff options
context:
space:
mode:
authoralzobnin <alzobnin@yandex-team.ru>2022-02-10 16:46:50 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:50 +0300
commit5085152b94bf621933243a498def7f37d2e76b58 (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /library/cpp/charset/codepage.h
parentc9317148cc3e9f1b0bc0ce95172f47e099f2c554 (diff)
downloadydb-5085152b94bf621933243a498def7f37d2e76b58.tar.gz
Restoring authorship annotation for <alzobnin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/charset/codepage.h')
-rw-r--r--library/cpp/charset/codepage.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/library/cpp/charset/codepage.h b/library/cpp/charset/codepage.h
index ad9d62cb69..30a02a4610 100644
--- a/library/cpp/charset/codepage.h
+++ b/library/cpp/charset/codepage.h
@@ -2,12 +2,12 @@
#include "doccodes.h"
-#include <util/charset/recode_result.h>
-#include <util/charset/unidata.h> // all wchar32 functions
-#include <util/charset/utf8.h>
+#include <util/charset/recode_result.h>
+#include <util/charset/unidata.h> // all wchar32 functions
+#include <util/charset/utf8.h>
#include <util/generic/string.h>
-#include <util/generic/ylimits.h>
-#include <util/generic/yexception.h>
+#include <util/generic/ylimits.h>
+#include <util/generic/yexception.h>
#include <util/system/yassert.h>
#include <util/system/defaults.h>
@@ -248,7 +248,7 @@ const Encoder& EncoderByCharset(ECharset enc);
namespace NCodepagePrivate {
class TCodePageData {
private:
- static const CodePage* const AllCodePages[];
+ static const CodePage* const AllCodePages[];
static const Recoder rcdr_to_yandex[];
static const Recoder rcdr_from_yandex[];
@@ -256,7 +256,7 @@ namespace NCodepagePrivate {
static const Recoder rcdr_to_upper[];
static const Recoder rcdr_to_title[];
- static const Encoder* const EncodeTo[];
+ static const Encoder* const EncodeTo[];
friend struct ::CodePage;
friend class TCodepagesMap;
@@ -302,23 +302,23 @@ inline void ToUpper(char* s, size_t n, const CodePage& cp = csYandex) {
for (; s != e; ++s)
*s = cp.ToUpper(*s);
}
-
+
inline TString ToLower(TString s, const CodePage& cp, size_t pos = 0, size_t n = TString::npos) {
- s.Transform([&cp](size_t, char c) { return cp.ToLower(c); }, pos, n);
- return s;
-}
-
+ s.Transform([&cp](size_t, char c) { return cp.ToLower(c); }, pos, n);
+ return s;
+}
+
inline TString ToUpper(TString s, const CodePage& cp, size_t pos = 0, size_t n = TString::npos) {
- s.Transform([&cp](size_t, char c) { return cp.ToUpper(c); }, pos, n);
- return s;
-}
-
+ s.Transform([&cp](size_t, char c) { return cp.ToUpper(c); }, pos, n);
+ return s;
+}
+
inline TString ToTitle(TString s, const CodePage& cp, size_t pos = 0, size_t n = TString::npos) {
- s.Transform(
- [pos, &cp](size_t i, char c) {
- return i == pos ? cp.ToTitle(c) : cp.ToLower(c);
- },
- pos,
+ s.Transform(
+ [pos, &cp](size_t i, char c) {
+ return i == pos ? cp.ToTitle(c) : cp.ToLower(c);
+ },
+ pos,
n);
- return s;
-}
+ return s;
+}