Tagged Questions
7
votes
3answers
750 views
F# forward type declarations
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 ...
5
votes
3answers
275 views
Problem determining how to order F# types due to circular references
I have some types that extend a common type, and these are my models.
I then have DAO types for each model type for CRUD operations.
I now have a need for a function that will allow me to find an id ...
3
votes
1answer
149 views
Organise my mutual recursive types
Is it possible to have mutual recursive types ([<Struct>]) spread across different files? The types are directly under a namespace.
My solution is to put them in one big file and use type ... ...