Is is possible to have reference to module in haskell? I have several modules, each of them expose the same interface(two functions of same name and signature). Is it possible to have a list of such modules, to call function for each module.
Share
What about defining a data type for the interface? Each module provides a single instance of the datatype and then you can iterate through all instances.