Tagged Questions
1
vote
1answer
118 views
Merge Sort Program
I have written the following program to implement merge sort in F#.
Can you please review this and let me know how can I write this in the most functional way (also most efficient and concise)?
In ...
2
votes
2answers
93 views
Recursive function refactoring help: occurrences of char in string starting at ith char
Just getting into functional programming and F# with the most appropriately titled Functional Programming Using F#. I wrote the following function definition for problem 2.4 but I'm thinking there's ...
2
votes
2answers
480 views
simple stupid F# async telnet client
Did I write this code to correctly be tail call optimized? Am I forcing computations more than I need with !? Did I generally write this asynchronously correctly to ...