How do you decide between writing a function inside a module or as a static member of some type?
For example, in the source code of F#, there are lots of types that
In F# I prefer a static member on a type over a function in a module if ...