On Saturday, 31 March 2018 at 16:08:36 UTC, lempiji wrote:
---
import rx;
auto firstWord = new BehaviorSubject!string("Change");
auto secondWord = new BehaviorSubject!string("me!");
auto bothWords = new BehaviorSubject!string("");
combineLatest!((a, b) => a ~ " " ~ b)(firstWord,
seco
On Friday, 23 March 2018 at 12:59:23 UTC, crimaniak wrote:
I want to have reactive variables like in this example:
```
USING_REACTIVE_DOMAIN(D)
// The two words
VarSignalT firstWord = MakeVar(string( "Change" ));
VarSignalT secondWord = MakeVar(string( "me!" ));
// ...
SignalT bothWords = firs