Should F# functions be placed in modules, classes, or another structure? [closed]
To give some specific recommendations about choosing between namespaces, modules abd classes in F#: If you’re writing functions using let that are expected to be used from F#, then putting them inside a module is the best choice. This gives you API similar to List.map and other basic F# functions. Regarding naming, you should use … Read more