demystifyfp / FsToolkit.ErrorHandling

An opinionated F# Library for error handling
https://demystifyfp.gitbook.io/fstoolkit-errorhandling
MIT License
466 stars 59 forks source link

Add sequenceResultA and friends to Array #278

Open boggye opened 2 days ago

boggye commented 2 days ago

Could you please make the methods present in List: https://github.com/demystifyfp/FsToolkit.ErrorHandling/blob/master/src/FsToolkit.ErrorHandling/List.fs available for Array as well?

It is a bit of a pain to convert between types, especially when I need to use arrays to process lots of data (forced by external api) and I need to squeeze as much performance as possible.

Thank you

TheAngryByrd commented 2 days ago

Happy to accept a PR for this 😄

boggye commented 2 days ago

The problem is that the code is a bit above my F# expertise, but I will try ...