-
We need to nicely explain how to handle side-effects and mutable state. For now I say we simply do not have it.
-
Based off this tweet: https://twitter.com/pacoworks/status/1098377239786221568
```
fun testSideEffect(f: TestObserver.((T)-> Unit) -> Unit): Unit {
val obs = TestObserver()
val sub = Publis…
-
Imagine the following:
```js
const iterable = {
get [Symbol.iterator]() {
console.log('Symbol.iterator getter');
return function () {
console.log('Symbol.iterator implementatio…
-
The existing side effects model aims to be extremely easy to use.
```js
const todosReactor = react([])
.to(fetchTodos)
.withProcessors(dispatch => {
fetch('/todos')
.then(/* ...d…
-
Inject is great for efficiently adjusting the UI, but I've encountered some side effects. Specifically, viewDidLoad is called early due to the addAsChild invocation, which leads to some properties set…
-
I would need to tag when a function has side effects, say with:
```
@sideEffects: console.log, fs.writefile
```
### Expected behavior
This is supposed to be an array of strings or links to …
-
Is it a bug or desired behaviour? It seems that using transform operation should not alter content of `$x` at least it should deep copy `$x` according to the doc.
```
(
$x := {
"test"…
-
I want to call side effect when move is performed to collect some metadata of how long it take to choose the move etc.
Problem is that there is no proper place for this.
I see two options :
…
-
https://github.com/wfeldt/libx86emu/blob/master/prim_ops.c#L793-L795
-
I imported the IAO ontology metadata namespace in order to get access to annotations like obo:definition. The corresponding classes for these properties show up in the class tree in Protege. I'm not…