ekmett / adjunctions

Simple adjunctions
http://hackage.haskell.org/package/adjunctions
Other
44 stars 27 forks source link

Import fix from Data.Function instead of Control.Monad.Reader #69

Closed Bodigrim closed 4 years ago

Bodigrim commented 4 years ago

There is an intention to stop re-exporting functions from base in future versions of mtl: https://github.com/haskell/mtl/pull/74 This PR brings adjunctions in line with the proposed change, because at the moment Data.Functor.Rep exports fix (originally from Data.Function) from Control.Monad.Reader.

RyanGlScott commented 4 years ago

Even if haskell/mtl#74 doesn't happen, this seems like a reasonable thing to do. Thanks.