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
In retrospect I think this function is not useful at all and possibly harmful. Null pointer exceptions can happen with non-nil values. There's just no way we can prevent errors without involving a bunch of type checks and try/catch which wouldn't be in line with ADR 0004.
Mark as deprecated ASAP
Remove in v4
The text was updated successfully, but these errors were encountered:
# [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
In retrospect I think this function is not useful at all and possibly harmful. Null pointer exceptions can happen with non-nil values. There's just no way we can prevent errors without involving a bunch of type checks and try/catch which wouldn't be in line with ADR 0004.
The text was updated successfully, but these errors were encountered: