F# mutual recursion between modules
Posted
by rwallace
on Stack Overflow
See other posts from Stack Overflow
or by rwallace
Published on 2010-05-25T13:10:32Z
Indexed on
2010/05/25
13:31 UTC
Read the original article
Hit count: 220
For recursion in F#, existing documentation is clear about how to do it in the special case where it's just one function calling itself, or a group of physically adjacent functions calling each other.
But in the general case where a group of functions in different modules need to call each other, how do you do it?
© Stack Overflow or respective owner