diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:15 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:15 +0300 |
commit | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (patch) | |
tree | da2c34829458c7d4e74bdfbdf85dff449e9e7fb8 /library/cpp/actors/util/recentwnd.h | |
parent | 778e51ba091dc39e7b7fcab2b9cf4dbedfb6f2b5 (diff) | |
download | ydb-72cb13b4aff9bc9cf22e49251bc8fd143f82538f.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/actors/util/recentwnd.h')
-rw-r--r-- | library/cpp/actors/util/recentwnd.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/library/cpp/actors/util/recentwnd.h b/library/cpp/actors/util/recentwnd.h index ba1ede6f29..6135814f50 100644 --- a/library/cpp/actors/util/recentwnd.h +++ b/library/cpp/actors/util/recentwnd.h @@ -1,15 +1,15 @@ #pragma once - + #include <util/generic/deque.h> template <typename TElem, template <typename, typename...> class TContainer = TDeque> class TRecentWnd { public: - TRecentWnd(ui32 wndSize) - : MaxWndSize_(wndSize) - { - } + TRecentWnd(ui32 wndSize) + : MaxWndSize_(wndSize) + { + } void Push(const TElem& elem) { if (Window_.size() == MaxWndSize_) @@ -23,27 +23,27 @@ public: Window_.emplace_back(std::move(elem)); } - TElem& Last() { - return Window_.back(); - } - const TElem& Last() const { - return Window_.back(); - } - bool Full() const { - return Window_.size() == MaxWndSize_; - } - ui64 Size() const { - return Window_.size(); - } + TElem& Last() { + return Window_.back(); + } + const TElem& Last() const { + return Window_.back(); + } + bool Full() const { + return Window_.size() == MaxWndSize_; + } + ui64 Size() const { + return Window_.size(); + } using const_iterator = typename TContainer<TElem>::const_iterator; - const_iterator begin() { - return Window_.begin(); - } - const_iterator end() { - return Window_.end(); - } + const_iterator begin() { + return Window_.begin(); + } + const_iterator end() { + return Window_.end(); + } void Reset(ui32 wndSize = 0) { Window_.clear(); @@ -60,7 +60,7 @@ public: Window_.begin() + Window_.size() - MaxWndSize_); } } - + private: TContainer<TElem> Window_; ui32 MaxWndSize_; |