We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There already exists:
combine : List (Result x a) -> Result x (List a)
But I'm missing a
combineErr : List (Result x a) -> Result (List x) (List a)
Should this be added?
The text was updated successfully, but these errors were encountered:
ResultME.combineList from the-sett's error-handling is similar
ResultME.combineList
type alias ResultME err a = Result (Nonempty err) a combineList : List (ResultME err a) -> ResultME err (List a)
Result
Nonempty
You could throw a PR in there with a version fromCombinedList (short for List.map fromResult >> combineList)
fromCombinedList
List.map fromResult >> combineList
Sorry, something went wrong.
No branches or pull requests
There already exists:
But I'm missing a
Should this be added?
The text was updated successfully, but these errors were encountered: