You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should make both the type List and the associated module List available. Perhaps ordinary using should import all identifiers with a given name (definitions, modules, fixities, whatever)? This is what I would expect most users to expect, and it's the most common use-case. If you want to specify that only a given sort of identifiers should be imported, there should be explicit syntax for it (but it will be rarely used):
import Stdlib.Prelude using {definition List; module List} open;
The text was updated successfully, but these errors were encountered:
For example, writing
should make both the type
List
and the associated moduleList
available. Perhaps ordinaryusing
should import all identifiers with a given name (definitions, modules, fixities, whatever)? This is what I would expect most users to expect, and it's the most common use-case. If you want to specify that only a given sort of identifiers should be imported, there should be explicit syntax for it (but it will be rarely used):The text was updated successfully, but these errors were encountered: