reactiveData icon indicating copy to clipboard operation
reactiveData copied to clipboard

Functional reactive programming with incremental changes in data structures

Results 4 reactiveData issues
Sort by recently updated
recently updated
newest added

This is a noted aspect of React but it doesn't look like `from_signal` handles this correctly. Is there a known workaround? I run into this subtle error in code looking...

The choice of `'a list` as the exposed data type imposes slow O(n) patch application. It'd be nice to have another module using another list-like data type (something similar to...

I splitted the modules sigs DATA / DATA' S / S' and also the functor Make. This is not visible for the outside. The most important part of the code...

bug

`make_from_s` [uses `React.S.value`](https://github.com/hhugo/reactiveData/blob/a1a6c6523a596b91eb6062204fba2eff3273bc1a/src/reactiveData.ml#L145), which [can raise a `Failure` when executed within an update step](http://erratique.ch/software/react/doc/React.S.html#VALvalue). I haven't been able to define it using only React non-primitive operators. Even though [coping out...