diff options
author | justdev <justdev@yandex-team.ru> | 2022-02-10 16:52:09 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:52:09 +0300 |
commit | 88931f88005f70dd76116a5abee79f50927801f8 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util | |
parent | 54c26d6703951e9ad8fd24c06a94c8a94fa8f1a3 (diff) | |
download | ydb-88931f88005f70dd76116a5abee79f50927801f8.tar.gz |
Restoring authorship annotation for <justdev@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util')
-rw-r--r-- | util/generic/xrange.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/generic/xrange.h b/util/generic/xrange.h index daefd3ee40..5fc8c82912 100644 --- a/util/generic/xrange.h +++ b/util/generic/xrange.h @@ -245,11 +245,11 @@ namespace NPrivate { } -/** - * generate arithmetic progression that starts at start with certain step and stop at finish (not including) - * - * @param step must be non-zero - */ +/** + * generate arithmetic progression that starts at start with certain step and stop at finish (not including) + * + * @param step must be non-zero + */ template <typename T> constexpr ::NPrivate::TSteppedXRange<T> xrange(T start, T finish, decltype(T() - T()) step) noexcept { return {start, finish, step}; |