When importing some data type, it is necessary to put (..) for constructors to be imported.
Is it possible to prevent exporting constructors of some data type, even when that data type is exported?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, just use the same syntax when exporting them –
Foo()just to export the type,Foo(..)to export the type and all constructors, andFoo(FooC1,FooC2)to just export the named constructors of the type.