├── .envrc ├── .git-blame-ignore-revs ├── .github └── workflows │ └── flake-ci.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── app └── Examples.hs ├── flake.lock ├── flake.nix ├── fourmolu.yaml ├── hamilton.cabal ├── src └── Numeric │ └── Hamilton.hs └── test └── Spec.hs /.envrc: -------------------------------------------------------------------------------- 1 | watch_file *.cabal 2 | use flake 3 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # fourmolu 2 | 2f6ca862e31ddf33c86c8fb2660d7e0194b6fc2e 3 | -------------------------------------------------------------------------------- /.github/workflows/flake-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/.github/workflows/flake-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | 3 | main = defaultMain 4 | -------------------------------------------------------------------------------- /app/Examples.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/app/Examples.hs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/flake.nix -------------------------------------------------------------------------------- /fourmolu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/fourmolu.yaml -------------------------------------------------------------------------------- /hamilton.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/hamilton.cabal -------------------------------------------------------------------------------- /src/Numeric/Hamilton.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/src/Numeric/Hamilton.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstksg/hamilton/HEAD/test/Spec.hs --------------------------------------------------------------------------------