-
I'm getting some linkage error because of duplicate `from_event` symbols. Here's a patch?
```diff
Index: rxqt_event.hpp
===================================================================
--- rx…
-
What's the equivalent of RxJava's `toList` in RxCpp?
``` cpp
auto numbers = rxcpp::observable::range(1, 100);
numbers
./* convert rxcpp::observable to rxcpp::observable> */
.subscribe([](std…
-
I pasted this code in my terminal while being in the root of RxCpp:
`````` bash
mkdir projects/build
cd projects/build
cmake -G"Unix Makefiles" -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DCMAKE…
dhaeb updated
6 years ago
-
I have generated RxCpp Visual Studio 2015 solution with CMake 3.7.2 and built 32bit Release:
```
cd RxCpp
mkdir build
cd build
cmake -G "Visual Studio 14 2015" -T v140_xp ..
cmake --build . -…
-
clang++ --version
clang version 3.9.0 (tags/RELEASE_390/final)
Target: x86_64-unknown-linux-gnu
Thread model: posix
Trying to build RxCpp
mkdir projects/build
cd projects/build
cmake -G"Unix …
-
Q1 : rxcpp protects on_next. Is this intentional?
...
auto handler_next = [ ] (evt_t i) {throw "aaa";};
auto handler_error = [ ] (auto e) { console::error("on_error: "s + e); };
...
…
-
Please consider the following code:
``` cpp
rxcpp::observable obs = rxcpp::observable::just(std::string("Foo"));
obs.distinct(); // Error
```
The error is the `static_assert`:
> Function passed for…
-
The following compiles fine on Clang, but not on VS2015:
``` cpp
#include "rxcpp/rx.hpp"
#include
class Foo {
public:
Foo(const rxcpp::observable& str = rxcpp::observable::just(std::string())) …
-
Hello,
I created an observer by applying the onNext and onError functions.
After I get an observer from the subscriber (by creating an observable on same data type).
This observers, get from 2 diff…
-
In RxAndroid, there's `.observeOn(AndroidSchedulers.mainThread())`. How do you achieve that in RxCpp?
For example, how do I ensure that the call to `printf` below is executed on the main thread?
```…