diff options
author | Oleg Sidorkin <osidorkin@gmail.com> | 2022-02-10 16:49:36 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:36 +0300 |
commit | 5ce74d4fee2d42a4b86efc02dfdc704d458760e1 (patch) | |
tree | f16a3558ca40d453a1c6a2ed764bd75d64cffade /library/cpp/scheme/scheme.h | |
parent | cd33f9aa8461f8e2b0b9e68efbb6bc9856197dc9 (diff) | |
download | ydb-5ce74d4fee2d42a4b86efc02dfdc704d458760e1.tar.gz |
Restoring authorship annotation for Oleg Sidorkin <osidorkin@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/scheme/scheme.h')
-rw-r--r-- | library/cpp/scheme/scheme.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/scheme/scheme.h b/library/cpp/scheme/scheme.h index 3d7c59f3c97..1b6f5d8323c 100644 --- a/library/cpp/scheme/scheme.h +++ b/library/cpp/scheme/scheme.h @@ -193,7 +193,7 @@ namespace NSc { inline bool Has(size_t idx) const; inline const TValue& Get(size_t idx) const; // returns child or default - inline TValue* GetNoAdd(size_t idx); // returns link to existing child or nullptr + inline TValue* GetNoAdd(size_t idx); // returns link to existing child or nullptr inline TValue& Push(); // returns new child @@ -260,7 +260,7 @@ namespace NSc { inline bool Has(TStringBuf idx) const; inline const TValue& Get(TStringBuf idx) const; - inline TValue* GetNoAdd(TStringBuf idx); // returns link to existing child or nullptr + inline TValue* GetNoAdd(TStringBuf idx); // returns link to existing child or nullptr TValue& Add(TStringBuf idx) { return GetOrAdd(idx); @@ -364,7 +364,7 @@ namespace NSc { // if the path is syntactically valid and the target value exists // otherwise returns NSc::Null() - TValue* TrySelectOrAdd(TStringBuf path); // returns the target value if it exists or creates if not + TValue* TrySelectOrAdd(TStringBuf path); // returns the target value if it exists or creates if not // if the path is syntactically valid // otherwise returns NSc::Null() @@ -413,7 +413,7 @@ namespace NSc { bool IsSameOrAncestorOfImpl(const TScCore& other, NImpl::TSelfLoopContext& loopCtx) const; inline TScCore& CoreMutable(); - inline TScCore& CoreMutableForSet(); + inline TScCore& CoreMutableForSet(); inline const TScCore& Core() const; static inline TScCore* NewCore(TPoolPtr&); |