I stumbled across this problem in F#. Suppose, I want to declare two types that reference each other:


type firstType = 
     | T1 of secondType
     //................

type secondType =
     | T1 of firstType  
     //................    

How do I do that, so the compiler does not generate an error?

link|improve this question

See also stackoverflow.com/questions/680606/… – Brian Sep 4 '09 at 12:23
feedback

3 Answers

up vote 16 down vote accepted

You use 'and':

type firstType = 
     | T1 of secondType

and secondType =
     | T1 of firstType
link|improve this answer
feedback

I figured it. It's:


type firstType = 
     | T1 of secondType
     //................

and secondType =
     | T1 of firstType  
     //................   
link|improve this answer
4  
you use the same notation for mutually recursive functions as well - in case you didn't already know that. – Massif Sep 4 '09 at 13:17
feedback

The limitation is that the types have to be declared in the same file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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