You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# [4.0.0](v3.3.0...v4.0.0) (2022-01-28)
### chore
* refactor `fallback` as an operator function. close [#38](#38) ([38c1bb0](38c1bb0))
* remove `concede`. close [#35](#35) ([30c75aa](30c75aa))
* remove support of strings as lists. close [#36](#36) ([1ae4b26](1ae4b26))
### BREAKING CHANGES
* the following functions no longer accept strings as lists: `all`, `any`, `drop`, `filter`, `into`, `map`, `none` and `take`.
* `fallback` is now an operator function.
* the `concede` function is no longer available
The idea was to treat strings like lists so one could do:
This is fine for plain old ascii strings but things can get complicated very quickly when dealing with multi-codepoint characters:
If people need to treat strings as lists they would be better off operating that conversion with libraries such as Runes
Tasks
into
should still support string as a destinationThe text was updated successfully, but these errors were encountered: