├── .github └── workflows │ └── haskell-ci.yml ├── .gitignore ├── ChangeLog.md ├── LICENSE ├── README.md ├── Setup.hs ├── named.cabal ├── src ├── Named.hs └── Named │ └── Internal.hs └── test ├── Test.hs └── TestImport.hs /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /named.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/named.cabal -------------------------------------------------------------------------------- /src/Named.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/src/Named.hs -------------------------------------------------------------------------------- /src/Named/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/src/Named/Internal.hs -------------------------------------------------------------------------------- /test/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/test/Test.hs -------------------------------------------------------------------------------- /test/TestImport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monadfix/named/HEAD/test/TestImport.hs --------------------------------------------------------------------------------