Tagged Questions
8
votes
3answers
168 views
Difference between fold and reduce?
Trying to learn F# but got confused when trying to distinguish between fold and reduce. Fold seems to do the same thing but takes an extra parameter. Is there a legitimate reason for these two ...
8
votes
3answers
251 views
Is it possible to use continuations to make foldRight tail recursive?
The following blog article shows how in F# foldBack can be made tail recursive using continuation passing style.
In Scala this would mean that:
def foldBack[T,U](l: List[T], acc: U)(f: (T, U) => ...
3
votes
1answer
144 views
2
votes
4answers
827 views
F# - Breaking a List into Concatenated Strings by an Interval
I have a list of email addresses, and I need to send an email notification to each address. I'd like to do this in blocks of 25 addresses at a time. Is there any quick way in a functional language ...
1
vote
5answers
169 views
F# '+' operator overload and List.fold
I'm trying to use List.fold on a record type that defines an operator overload for +, but I'm getting a type mismatch error when trying to use the (+) operator as the lambda passed to fold. Here's a ...
1
vote
4answers
214 views
Sequence in F# folding triples
I've googled and read, and I'm trying to find a "correct" way to do it, but every question I read on SO seems to have completely different answers.
Here is the gist of my problem. files has the type ...
1
vote
1answer
145 views
F# -> Fold with 2 parameters
I'm trying to make a custom fold which goes through my sequence, and takes 2 Teams a time and assign them to a Match and then return a Match list in the end.
My current code is:
let myFold f s =
...