Type dependencies vs directory structure
- by paul
Something I've been wondering about recently is how to organize types in directories/namespaces w.r.t. their dependencies.
One method I've seen, which I believe is the recommendation for both Haskell and .NET (though I can't find the references for this at the moment), is:
Type
Type/ATypeThatUsesType
Type/AnotherTypeThatUsesType
My natural…