Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

66%
+2 −0
Q&A How to write a function that only accepts a list of `Error string` `Results` in F# on the level of types?

For example, given a mergeErrors function where input is always a list of Error strings, let es = [ Error 1; Error 2; Error 3 ] let mergeErrors<'a> (errors: Result<'a,int> list) : R...

1 answer  ·  posted 4mo ago by toraritte‭  ·  last activity 4mo ago by Derek Elkins‭

Question f#
#2: Nominated for promotion by user avatar Alexei‭ · 2024-01-28T12:51:09Z (4 months ago)
#1: Initial revision by user avatar toraritte‭ · 2024-01-27T15:13:51Z (4 months ago)
How to write a function that only accepts a list of `Error string` `Results` in F# on the level of types?
For example, given a `mergeErrors` function where input is always a list of `Error string`s,


```fsharp
let es = [ Error 1; Error 2; Error 3 ]

let mergeErrors<'a> (errors: Result<'a,int> list) : Result<'a,int list> =
    errors
    |> List.map (function | Error e -> e)
    |> Error

mergeErrors (es: Result<int,int> list)
//=> Error [1; 2; 3]
```

this will always blow up during runtime. Was wondering if there is a way to force failure to compile time?

---

### Context

In my script, there is a `Result<'a, string> seq seq` type where each constituent `Result<'a, string> seq` needs to be flattened:

+ if there are `Error`s, then `Ok`s can be discarded, and an `Error concatenatedStrings` should be returned
+ if all is `Ok`, then they are merged depending of the shape of `'a`

My naive solution is to

```fsharp
let filterError (row: Result<'a, string> seq) =
    row 
    |> Seq.filter (function
        | Error _ -> true 
        | _       -> false)
    
let mergeErrors inputFromFilterError =
    // ...

```

This is almost surely the wrong approach (and found the F# For Fun and Profit's ["Map and Bind and Apply, Oh my!" series][1] while researching for an answer), but I'm still curious.


  [1]: https://fsharpforfunandprofit.com/posts/elevated-world-4/#series-contents
f#