qualified exports , what would that mean Re: Add

Henning Thielemann lemming at henning-thielemann.de
Fri Feb 22 07:58:46 UTC 2019


On Thu, 21 Feb 2019, Lennart Augustsson wrote:

> Sure, but with a lot more overhead.

It would look like this:


module Unqualified (...) where


module Qualified (
    module Unqualified,
    e,
    ) where


If the list of qualified exports is long, then it might even be less to 
write than adding 'qualified' to many identifiers. I don't like to make 
the already complicated module system even more complicated for promoting 
a feature that has code smell anyway (namely, unrestricted unqualified 
imports).


More information about the Libraries mailing list