-
Notifications
You must be signed in to change notification settings - Fork 8
Home
Gozala edited this page Jan 14, 2013
·
7 revisions
-
Q: What can I reduce ?
A: All the built-ins are already made reducible, but literally everything can be made reducible. Also checkout existing list things to reduce -
Q: Can this handle "back pressure" ?
A: Short answer is Yes. See IO Coordination for more detailed answer -
Q: Can I create reducible type / class ?
A: Yes, check out Making values reducible for details how. -
Q: Can I make existing type / class reducible without changing it ?
A: Absolutely! Reducers were designed for that. There are already libraries like stream-reduce making node streams first class reducibles! You could also make any other type / class reducible check out Making values reducible for details how. -
Q: Can I represent user events as reducibles ?
A: Yes, it's one of the primary use cases and dom-reduce library already does the core work.