#include <rpp/rpp.hpp>
#include <iostream>
std::ostream & operator<<(std::ostream& out, std::tuple<int, int> value)
{
out << "{" << std::get<0>(value) << "," << std::get<1>(value) << "}";
return out;
}
int main()
{
.subscribe([](const int& v) { std::cout << "-" << v; },
[]() { std::cout << "-|" << std::endl; });
return 0;
}
Schedules execution of schedulables via queueing tasks to the caller thread with priority to time_poi...
Definition: trampoline_scheduler.hpp:41