summaryrefslogtreecommitdiff
path: root/Rx/v2/examples/doxygen/switch_if_empty.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Rx/v2/examples/doxygen/switch_if_empty.cpp')
-rw-r--r--Rx/v2/examples/doxygen/switch_if_empty.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/Rx/v2/examples/doxygen/switch_if_empty.cpp b/Rx/v2/examples/doxygen/switch_if_empty.cpp
deleted file mode 100644
index 51faad7..0000000
--- a/Rx/v2/examples/doxygen/switch_if_empty.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "rxcpp/rx.hpp"
-
-#include "rxcpp/rx-test.hpp"
-#include "catch.hpp"
-
-SCENARIO("switch_if_empty sample"){
- printf("//! [switch_if_empty sample]\n");
-
- auto values = rxcpp::observable<>::empty<int>()
- .switch_if_empty(rxcpp::observable<>::range(1, 5));
-
- values.subscribe(
- [](int v) { printf("OnNext: %d\n", v); },
- []() { printf("OnCompleted\n"); } );
-
- printf("//! [switch_if_empty sample]\n");
-}
-
-SCENARIO("switch_if_empty - operator syntax sample") {
- using namespace rxcpp;
- using namespace rxcpp::sources;
- using namespace rxcpp::operators;
-
- printf("//! [switch_if_empty - operator syntax sample]\n");
- auto values = empty<int>()
- | switch_if_empty(range(1, 5));
-
- values.subscribe(
- [](int v) { printf("OnNext: %d\n", v); },
- []() { printf("OnCompleted\n"); } );
-
- printf("//! [switch_if_empty - operator syntax sample]\n");
-}