-
```
I am experimenting with Clara rules, it fails to load.
After some digging I found that core.reducers is not loading:
=> (clojure-version)
"1.6.0"
=> (require '[clojure.core.reducers :as r])
Comp…
-
@ericvicenti presented Native Navigation for Every Platform at ReactEurope 2016 (https://www.youtube.com/watch?v=dOSwHABLvdM)
He proposes a structure that makes possible to move a component (ChatApp …
-
The dims parameter on a reducer (such as sum) may be an integer, list, or tuple:
```
A = rand(3, 3, 3)
sum(A, dims=1) # valid
sum(A, dims=[1, 2]) # valid
sum(A, dims=(1, 2)) # valid
```
…
-
Now that 1.3.0 is nearing completion I'd like to open up discussion for some possible places to begin cleaning and refactoring various rough spots of the codebase.
I would like to streamline the ac…
-
This is a proposed alternative set of re-namings for the things we have historically called Specs, Mappers, and Reducers.
This is prompted by the re-namings @jhjaggars defined near the end of http…
-
Issues where `agg` is used with non-reducing functions:
* #18103
* #14741
* #35490
I think `agg` should ~raise if the function(s) provided are not reducers. This can be tested by if the result…
-
I'm faced with strange behaviour by @ngrx/store-devtools.
## Environment:
- Windows 10 Pro
- Chrome Version 63.0.3239.132
- Node v6.11.3, Node v8.9.4
- Project generated with Angular CLI v1.5.0…
-
I am getting this error on iOS only so far.
Seems to only happen when Redux Persist is enabled.
Relevant libraries:
```
"@reduxjs/toolkit": "^2.2.6",
"react": "18.2.0",
"react-…
-
It would be helpful to have access to `this.userId` inside the `reduce` function of a server-only reducer! Since it's running inside a method context, this should be doable.
Current workaround: use…
-
Redux code has turned into a nightmare of complexity, I'm going to have to make this much more manageable by restructuring my code, possibly using the duck pattern I just read about, and also followin…