We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc935b7 commit 09ffdfcCopy full SHA for 09ffdfc
1 file changed
include/react/Signal.h
@@ -111,7 +111,7 @@ class RVarSignal : public RSignal<D,S>
111
{
112
}
113
114
- RVarSignal& operator<<=(const S& newValue)
+ void Set(const S& newValue) const
115
116
if (! Domain::TransactionInputContinuation::IsNull())
117
@@ -130,6 +130,11 @@ class RVarSignal : public RSignal<D,S>
130
t.Data().Input().AddSignalInput(*varNode, newValue);
131
t.Commit();
132
133
+ }
134
+
135
+ const RVarSignal& operator<<=(const S& newValue) const
136
+ {
137
+ Set(newValue);
138
return *this;
139
140
};
0 commit comments