dlist
dlist copied to clipboard
Difference lists in Haskell
Oops! Seems like I removed things that I shouldn't have in `test.yml` with #110. Too much enthusiasm and too little oversight, I suppose. Add it back!
Hello, I'm getting this warning for a pattern usage like: ``` haskell foo :: DList a -> IO () foo Nil = putStrLn "empty!" foo (Cons x xs) = print...
- https://github.com/commercialhaskell/stackage/issues/7391 CI for GHC 7 needs to be dropped as it is no longer supported by Haskell-CI. CI running here: https://github.com/andreasabel/dlist/pull/2
Fixes #107.
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 6. Release notes Sourced from actions/checkout's releases. v6.0.0 What's Changed Update README to include Node.js 24 support details and requirements by @salmanmkc in actions/checkout#2248 Persist...
[MicroHs](https://github.com/augustss/MicroHs) is a small Haskell compiler implemented with combinators. It supports most features used by `dlist`, except type families (used in the `IsList` instance). Closes #126.
Right now the `.cabal` file has a list of `extra-source-files` that is separated by commas in one place but not another (this causes an error in microhs, viz. ``` mcabal:...