diff options
author | vayerx <vayerx@yandex-team.ru> | 2022-02-10 16:52:04 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:52:04 +0300 |
commit | d40bf94919f2035f1f522c4a285adce76f8f4edc (patch) | |
tree | da42c929f1baf9413587bee9663b093830e8a751 /util/generic/algorithm.h | |
parent | b2577ab8779c4f6d23fc354eaa279f2e80b0fb37 (diff) | |
download | ydb-d40bf94919f2035f1f522c4a285adce76f8f4edc.tar.gz |
Restoring authorship annotation for <vayerx@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/algorithm.h')
-rw-r--r-- | util/generic/algorithm.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/util/generic/algorithm.h b/util/generic/algorithm.h index badfb88993..d6f81365c7 100644 --- a/util/generic/algorithm.h +++ b/util/generic/algorithm.h @@ -367,26 +367,26 @@ template <class T1, class T2, class P> static inline bool Equal(T1 f1, T1 l1, T2 f2, P p) { return std::equal(f1, l1, f2, p); } - -template <class TI, class TO> -static inline TO Copy(TI f, TI l, TO t) { + +template <class TI, class TO> +static inline TO Copy(TI f, TI l, TO t) { return std::copy(f, l, t); -} - -template <class TI, class TO> -static inline TO UniqueCopy(TI f, TI l, TO t) { +} + +template <class TI, class TO> +static inline TO UniqueCopy(TI f, TI l, TO t) { return std::unique_copy(f, l, t); -} - -template <class TI, class TO, class TP> -static inline TO UniqueCopy(TI f, TI l, TO t, TP p) { +} + +template <class TI, class TO, class TP> +static inline TO UniqueCopy(TI f, TI l, TO t, TP p) { return std::unique_copy(f, l, t, p); -} - -template <class TI, class TO, class TP> -static inline TO RemoveCopyIf(TI f, TI l, TO t, TP p) { +} + +template <class TI, class TO, class TP> +static inline TO RemoveCopyIf(TI f, TI l, TO t, TP p) { return std::remove_copy_if(f, l, t, p); -} +} template <class TI, class TO> static inline TO ReverseCopy(TI f, TI l, TO t) { |