I wrote this little function, I'll repeat it here for ease-of-reference:
/// Take a list of lists, go left-first, and return each combination,
/// then apply a function to the resulting sublists, each length of main list
let rec nestedApply f acc inp =
match inp with
| [] -> f acc
| head::tail ->
[
for x in head do
yield! nestedApply f (x::acc) tail
]
It made me wonder whether using yield! in this context, or in general with list comprehensions, is tail-recursive. I actually think it isn't, which makes that the above function would create a stack-depth equal to the size of the main list.
If it isn't, how can I write this same code in a tail-recursive way? I've tried with List.collect (a rolled out idea is in the referred-to question), but I didn't quite get there.
To simplify things I am going to separate the multiplication of lists from the mapping of the function. So
nestedApplywill look like this:Where
multdoes the multiplication of the lists and returns all the combinations.I usually find that to do tail recursion is better to start with the simple recursion first:
So this version of
multdoes the job but it does not use tail recursion. It does serves as a template to create the tail recursion version and I can check that both return the same value:The tail recursion version
multTuses an internal accumulator parameter. To hide it, I nest the recursive part inside the functionmult. I also reverse the list because this version works backwards.Many times when you have a tail recursive function you can eliminate the recursion by using the
foldfunction:or
foldBack:Notice the similarities.
Here is the solution in fiddle:
https://dotnetfiddle.net/sQOI7q