Aleksey Loginov
Aleksey Loginov
Hi, I want to request feature related to daily notes. Some context: I've found, that using daily notes for me is overkill (not enough things to catch daily), but weekly...
"nebu" from discord requested implementation of `sample` and `sample_with_time` operators
Example: ```cpp rxcpp::observable::range(1, rxcpp::observe_on_new_thread()) .delay(std::chrono::seconds(1), rxcpp::identity_current_thread()) .as_blocking() .subscribe([](const auto &v) { std::cout
Hi everyone and hi @kirkshoop! Most of the operators in rxcpp which requires schedulers has such an fallback scheduler: ``` If scheduler is omitted, identity_current_thread is used. ``` For example,...
Current implementation is really good and fast BUT it does a lot of unnecessary heap allocations AND a lot of unnecessary moves/copies while it is not needed. Need to change...