Reactant
Reactant copied to clipboard
Extension Sequence's `take(until:)`, `first(where:)`, and `all(predicate:)` are redundant.
All of these functions can be easily coded (on one line even), saving no space. Reactant as an architecture doesn't need these methods included.
first(where:) is now actually a part of Swift.
take(until:) is just prefix(while:).