Reputation: 9649
What properties are supposed to put Haskell modules
under namespace rather Control
than Data
or vice versa? Any guidelines or insights are much appreciated.
Upvotes: 2
Views: 262
Reputation: 48644
Haskell has rough guidelines
on how to name module names. You can go through that link to get an general idea about it. The general convention is that Control
will hold some sort of abstraction pattern where as Data
will hold some data types and data structure.
Upvotes: 4