<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ydb/util/generic/algorithm_ut.cpp, branch oidc-1.2.0</title>
<subtitle>Mirror of YDB github repos</subtitle>
<id>https://code.mastervirt.ru/ydb/atom?h=oidc-1.2.0</id>
<link rel='self' href='https://code.mastervirt.ru/ydb/atom?h=oidc-1.2.0'/>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/'/>
<updated>2025-04-24T11:18:37Z</updated>
<entry>
<title>Intermediate changes</title>
<updated>2025-04-24T11:18:37Z</updated>
<author>
<name>robot-piglet</name>
<email>robot-piglet@yandex-team.com</email>
</author>
<published>2025-04-24T11:01:12Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=ea7d9634e7f89c48e5707842357a279004afd223'/>
<id>urn:sha1:ea7d9634e7f89c48e5707842357a279004afd223</id>
<content type='text'>
commit_hash:ae46d476745bcde01f2465ccfec1ae45e8d29d1e
</content>
</entry>
<entry>
<title>Support move-only key types in the Max/MinElementBy routines</title>
<updated>2024-09-26T19:29:56Z</updated>
<author>
<name>swarmer</name>
<email>swarmer@yandex-team.com</email>
</author>
<published>2024-09-26T19:15:27Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=9598e6ce746a6ae937ccc291c9c5e64db14ce62e'/>
<id>urn:sha1:9598e6ce746a6ae937ccc291c9c5e64db14ce62e</id>
<content type='text'>
It is also slightly faster for non-trivial key types.
commit_hash:4104cabfe8dc9a51174034c62aae25be16b57bf9
</content>
</entry>
<entry>
<title>FixNamespaceComments in /util</title>
<updated>2024-09-05T17:17:10Z</updated>
<author>
<name>dmasloff</name>
<email>dmasloff@yandex-team.com</email>
</author>
<published>2024-09-05T17:05:47Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=74184a40c15dc0649a769d9754d0ce7efb44db04'/>
<id>urn:sha1:74184a40c15dc0649a769d9754d0ce7efb44db04</id>
<content type='text'>
FixNamespaceComments in /util
bb9152570d7c258798644ead5a59f604de05ef3b
</content>
</entry>
<entry>
<title>Set SpacesInLineCommentPrefix to 1 in /util</title>
<updated>2024-08-17T20:43:45Z</updated>
<author>
<name>dmasloff</name>
<email>dmasloff@yandex-team.com</email>
</author>
<published>2024-08-17T20:33:42Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=69340f4614e853b9319df4b454ab7497711ee3cd'/>
<id>urn:sha1:69340f4614e853b9319df4b454ab7497711ee3cd</id>
<content type='text'>
Set SpacesInLineCommentPrefix to 1 in /util
3853f9ec5143722c1bebd8dc0ffc9b61a6c17657
</content>
</entry>
<entry>
<title>Remove extra semicolon (util)</title>
<updated>2023-06-12T12:39:10Z</updated>
<author>
<name>bulatman</name>
<email>bulatman@yandex-team.com</email>
</author>
<published>2023-06-12T12:39:10Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=7c5a27ccb26f24801b005c5093b128de084476eb'/>
<id>urn:sha1:7c5a27ccb26f24801b005c5093b128de084476eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>prepare to split hash.h into hash_table.h hash.h and multi_hash_map.h</title>
<updated>2022-09-09T08:15:36Z</updated>
<author>
<name>tobo</name>
<email>tobo@yandex-team.com</email>
</author>
<published>2022-09-09T08:15:36Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=e96ef596aca8afaf0326b57001ff56fbdd643e8a'/>
<id>urn:sha1:e96ef596aca8afaf0326b57001ff56fbdd643e8a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[util] prefer non-const begin/end method for non-const containers in AdjacentFind* functions</title>
<updated>2022-07-19T07:51:56Z</updated>
<author>
<name>swarmer</name>
<email>swarmer@yandex-team.com</email>
</author>
<published>2022-07-19T07:51:56Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=c64ee34d9c321fa796868ddca03dddb174704107'/>
<id>urn:sha1:c64ee34d9c321fa796868ddca03dddb174704107</id>
<content type='text'>
AdjacentFind и AdjacentFindBy принимали контейнер по константной ссылке и из-за этого возвращали константный итератор.

Стоит для некостантного контейнера возвращать также неконстантный итератор (если он есть). 
Это позволит 
1. использовать итератор для модификации контейнера;
2. обойти проблему, когда методы `end()` и `cend()`/`std::as_const(…).end()` возвращают итераторы разных типов, которые нельзя сравнивать, либо для которых выбор оператора сравнения неоднозначен.</content>
</entry>
<entry>
<title>[util] AdjacentFind + AdjacentFindBy</title>
<updated>2022-06-10T00:48:46Z</updated>
<author>
<name>swarmer</name>
<email>swarmer@yandex-team.ru</email>
</author>
<published>2022-06-10T00:48:46Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=649b24b6e528a274568b079f18aed32b07d1a9f3'/>
<id>urn:sha1:649b24b6e528a274568b079f18aed32b07d1a9f3</id>
<content type='text'>
ref:76575abc5c39caf128339b56115c217c15766b51
</content>
</entry>
<entry>
<title>[util] IsSortedBy for containers</title>
<updated>2022-06-01T22:34:52Z</updated>
<author>
<name>swarmer</name>
<email>swarmer@yandex-team.ru</email>
</author>
<published>2022-06-01T22:34:52Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=dec29e24bcc1d4208ad6f72e60c5b70037a4748d'/>
<id>urn:sha1:dec29e24bcc1d4208ad6f72e60c5b70037a4748d</id>
<content type='text'>
ref:6c01516241e312227b7654b6b0260add648c8609
</content>
</entry>
<entry>
<title>Restoring authorship annotation for &lt;gerich@yandex-team.ru&gt;. Commit 2 of 2.</title>
<updated>2022-02-10T13:52:07Z</updated>
<author>
<name>gerich</name>
<email>gerich@yandex-team.ru</email>
</author>
<published>2022-02-10T13:52:07Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=69d77def656f0edd1eead9f5a73940233255e5db'/>
<id>urn:sha1:69d77def656f0edd1eead9f5a73940233255e5db</id>
<content type='text'>
</content>
</entry>
</feed>
