Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piyush-kurur/5347ea9803f96e98ab7cc59e27689a41 to your computer and use it in GitHub Desktop.
Save piyush-kurur/5347ea9803f96e98ab7cc59e27689a41 to your computer and use it in GitHub Desktop.
module Foo.Exports
( module Foo ) where
import Foo hiding ( Bar, Biz )
import Foo (Bar, Biz)
-- The idea here is that I want to re-export everything from Foo except for the types Bar and Biz
-- whose constructors I want to hide
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment