Possible Duplicate:
[F#] How to have two methods calling each other?

Hello all,

I Have a scenario where I have two functions that would benefit from being mutually recursive but I'm not really sure how to do this in F#

My scenario is not as simple as the following code, but I'd like to get something similar to compile:

let rec f x =
  if x>0 then
    g (x-1)
  else
    x

let rec g x =
  if x>0 then
    f (x-1)
  else
    x
link|improve this question

I hesitate to mark this one as the duplicate, because the title is probably better... – Benjol Sep 2 '10 at 5:03
@Benjol: Generally we don not delete duplicates with substantially different titles in order to improve searchability, but we still close them. – dmckee Sep 3 '10 at 17:31
feedback

closed as exact duplicate by Brian, gradbot, Onorio Catenacci, Ganesh Sittampalam, dmckee Sep 3 '10 at 17:30

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 10 down vote accepted

You can also use let rec ... and form:

let rec f x =
  if x>0 then
    g (x-1)
  else
    x

and g x =
  if x>0 then
    f (x-1)
  else
    x
link|improve this answer
Beat me to it by 42 seconds... :-) – Jon Harrop Sep 1 '10 at 18:56
+1, Nice, didn't realize you could use and with let bindings. I thought it's usage was restricted to type declarations. – JaredPar Sep 1 '10 at 19:02
It's specially useful (necessary) if you have mutually recursive types (like two DUs) and two functions that take each as an input argument. – Stringer Sep 1 '10 at 19:11
feedback

To get mutually recursive functions simply pass one to the other as a parameter

let rec f g x =
  if x>0 then
    g (x-1)
  else
    x

let rec g x =
  if x>0 then
    f g (x-1)
  else
    x
link|improve this answer
feedback

Use the let rec ... and ... construct:

let rec f x =
  if x>0 then
    g (x-1)
  else
    x

and g x =
  if x>0 then
    f (x-1)
  else
    x
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.