sof
sof

Reputation: 9649

Modules qualified under Haskell namespace Control or Data

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

Answers (1)

Sibi
Sibi

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

Related Questions