-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Упростить интерфейс ленивых операций над диапазонами #116
Comments
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 26, 2020
izvolov
added a commit
that referenced
this issue
Jun 27, 2020
izvolov
added a commit
that referenced
this issue
Jun 27, 2020
izvolov
added a commit
that referenced
this issue
Jun 27, 2020
izvolov
added a commit
that referenced
this issue
Jun 27, 2020
izvolov
added a commit
that referenced
this issue
Jun 27, 2020
izvolov
added a commit
that referenced
this issue
Jun 27, 2020
izvolov
added a commit
that referenced
this issue
Jun 27, 2020
izvolov
added a commit
that referenced
this issue
Jun 27, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 3, 2020
izvolov
added a commit
that referenced
this issue
Jul 19, 2020
izvolov
added a commit
that referenced
this issue
Jul 23, 2020
izvolov
added a commit
that referenced
this issue
Jul 24, 2020
izvolov
added a commit
that referenced
this issue
Jul 24, 2020
izvolov
added a commit
that referenced
this issue
Jul 26, 2020
Новое: - Упрощённый интерфейс (через `std::tie`) для ленивых операций с множествами; - Метафункции: * are_same * minimum_category * range_category * range_iterator * range_reference * range_value Изменения: - Метафункции для итераторов сменили место жительства на `burst/type_traits`: * iterator_category * iterator_difference * iterator_pointer * iterator_reference * iterator_value
Merged
izvolov
added a commit
that referenced
this issue
Jul 26, 2020
Новое: - Упрощённый интерфейс (через `std::tie`) для ленивых операций с множествами; - Метафункции: * are_same * minimum_category * range_category * range_iterator * range_reference * range_value Изменения: - Метафункции для итераторов сменили место жительства на `burst/type_traits`: * iterator_category * iterator_difference * iterator_pointer * iterator_reference * iterator_value
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Можно не конструировать диапазон диапазонов явно, а передавать в функции (например,
merge
) кортеж ссылок на исходные диапазоны, и уже из них создавать ленивый диапазон диапазонов:auto merged = burst::merge(std::tie(first, second, third));
The text was updated successfully, but these errors were encountered: