Skip to content
Gozala edited this page Jan 14, 2013 · 7 revisions

F.A.Q.

  1. 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
  2. Q: Can this handle "back pressure" ?
    A: Short answer is Yes. See IO Coordination for more detailed answer
  3. Q: Can I create reducible type / class ?
    A: Yes, check out Making values reducible for details how.
  4. 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.
  5. 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.