I am writing a module that has a fairly large number of functions that need to be exported. This module also has a large number of data constructions.
Suppose my module contains the following:
module MyUtils (A(..), B(..),C(..),D(..),f1,f2,f3,f4,f5,f6) where
I saw the source of Data.Map here. It shows that it exports a large number of functions to a very large list.
But if I want to export everything, this can be done using the shortcut method, something like
module MyUtils (..) where
?
module export haskell
Tem pora
source share