Is it possible to split an F# module across files?
According to the book I have it is, but the book is probably outdated (Foundations of F#)
|
1
|
|
|
|
|
|
Apparently not:
|
||||||
|
|
|
I sometimes split a type over several places, like this:
where modules Foo and Bar are in different files. |
||
|
|
|
|
Like Kurt says, you can add extension methods to types, and thus
then
Since it's a class and not a module, you lose the ability to do 'open Mine' (but gain the ability to overload); thus this may or may not be an acceptable alternative for you depending on exactly what you're doing. |
||
|
|
|
|
The type extensions are cool, and hopefully they will allow to be cross file, while still being intrinsic. If you do a type extension in the same file, it compiles to one class, and the extension has access to private members and so on. If you do it in another file, it's just an "optional" extension, like C# static extension methods. (Even though the F# specs say differently.) I'd be surprised if this isn't addressed at some point, if only for designer support. If intrinsic type extensions could be anywhere in the assembly, that'd be pretty slick. Another option, which might not be what you want, is to create a type and a module, call the module the same name, and then add the ModuleSuffix flag to it:
This is used in the F# libraries, so they can have a type List or whatever, along with tons of helper stuff in a module. |
||
|
|