You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
handle case where collected events are passed via event_range instead of std::apply it is hard without event_range modification, because currently it stores const std::vector<E>& while we collect in std::array<E, N> here
for event_range case for transform and filter we can introduce special mode which allows to receive ranges with len less than N. I'm not sure is it needed, but it's nice to have
The text was updated successfully, but these errors were encountered:
Description
event_range
instead ofstd::apply
it is hard without event_range modification, because currently it storesconst std::vector<E>&
while we collect instd::array<E, N>
hereevent_range
case for transform and filter we can introduce special mode which allows to receive ranges with len less than N. I'm not sure is it needed, but it's nice to haveThe text was updated successfully, but these errors were encountered: