Tagged Questions

1
vote
3answers
120 views

F# forward type declarations

Hello everybody, I stumbled across this problem in F#. Suppose, I want to declare two types that reference each other: type firstType = | T1 of secondType //................ type …
6
votes
2answers
250 views

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

I'm a bit confused as to how to get two method to call each other (i.e., have A() call B() and B() call A()). It seems that F# only 'sees' the method after it's been encountered in code, so if it …
3
votes
2answers
121 views

How does one resolve F# Type Reference Errors?

I've been through my books, and I've googled until I've ran out of search terms, yet I still can't find an example or answer to this problem: The following code does not compile because the type …