29 lines
905 B
C++
29 lines
905 B
C++
|
#include "rxcpp/rx.hpp"
|
||
|
|
||
|
#include "rxcpp/rx-test.hpp"
|
||
|
#include "catch.hpp"
|
||
|
|
||
|
SCENARIO("any sample") {
|
||
|
printf("//! [any sample]\n");
|
||
|
auto values = rxcpp::observable<>::from(1, 2, 3, 4, 5).any([](int n) { return n > 3; });
|
||
|
values.
|
||
|
subscribe(
|
||
|
[](bool v) { printf("OnNext: %s\n", v ? "true" : "false"); },
|
||
|
[]() { printf("OnCompleted\n"); });
|
||
|
printf("//! [any sample]\n");
|
||
|
}
|
||
|
|
||
|
SCENARIO("any - operator syntax sample") {
|
||
|
using namespace rxcpp;
|
||
|
using namespace rxcpp::sources;
|
||
|
using namespace rxcpp::operators;
|
||
|
|
||
|
printf("//! [any - operator syntax sample]\n");
|
||
|
auto values = range(1, 10)
|
||
|
| any([](int n) { return n == 1; });
|
||
|
values.
|
||
|
subscribe(
|
||
|
[](bool v) { printf("OnNext: %s\n", v ? "true" : "false"); },
|
||
|
[]() { printf("OnCompleted\n"); });
|
||
|
printf("//! [any - operator syntax sample]\n");
|
||
|
}
|