#include <rpp/rpp.hpp>
#include <iostream>
int main()
{
| rpp::ops::start_with(5, 6)
| rpp::ops::subscribe([](int v) { std::cout << v << " "; });
| rpp::ops::subscribe([](int v) { std::cout << v << " "; });
| rpp::ops::merge()
| rpp::ops::subscribe([](int v) { std::cout << v << " "; });
return 0;
}
auto just(const TScheduler &scheduler, T &&item, Ts &&... items)
Creates rpp::observable that emits a particular items and completes.
Definition from.hpp:201