redux-data-structures
redux-data-structures copied to clipboard
Reducer factory functions for common data structures: counters, maps, lists (queues, stacks), sets, etc.
Do you plan supporting it (`@types/redux-data-structures`), rewrite the library on TS or accepting a pull request that refactors it on TS?
I am trying to implement set serialization, and have checkout out yours, though did not understand it. How does it work ? My aim is to have one of my...
Right now there is no simple way to add multiple items at once to a map. We have to dispatch an add action for each element when we want to...
What about an idea to make `getter` methods be a generator function? It can allow us to do this for example: ```JavaScript const todos = map({ addActionTypes: ['ADD_FEW_TODOS'], *keyGetter(action) {...
If I have two action types with different `payload` structure I have to describe the types and functions for selecting the data from these action in different places ```JavaScript const...